1 // CS0266: Cannot implicitly convert type `object' to `System.Collections.Hashtable'. An explicit conversion exists (are you missing a cast?)
4 // This case actually tests that the compiler doesn't crash after reporting the error
6 using System
.Collections
;
9 static void Main (string [] install
)
11 ArrayList order
= new ArrayList ();
12 Hashtable states
= new Hashtable ();
16 foreach (string inst
in order
){
17 Hashtable state
= states
[inst
];