G
Guest
First I'd like to ask, where can I report bugs to Microsoft such that I will
actually be able to see that something is being done with them and what their
status is? - bugzilla style. (I assume I can't, but no harm in asking).
This code...
Hashtable h = new Hashtable();
Console.WriteLine("ok1");
h.GetEnumerator();
Console.WriteLine("ok2");
(h as ICollection).GetEnumerator();
Console.WriteLine("ok3");
Hashtable h2 = Hashtable.Synchronized(h);
Console.WriteLine("ok4");
h2.GetEnumerator();
Console.WriteLine("ok5");
(h2 as ICollection).GetEnumerator();
Console.WriteLine("ok6");
....results in this output when compiled and run in .NET 1.1...
ok1
ok2
ok3
ok4
ok5
ok6
When compiled and run in .NET 2.0 beta 2 this is the result...
ok1
ok2
ok3
ok4
ok5
System.NullReferenceException: Object reference not set to an instance of an
object.
Regards,
Nev
actually be able to see that something is being done with them and what their
status is? - bugzilla style. (I assume I can't, but no harm in asking).
This code...
Hashtable h = new Hashtable();
Console.WriteLine("ok1");
h.GetEnumerator();
Console.WriteLine("ok2");
(h as ICollection).GetEnumerator();
Console.WriteLine("ok3");
Hashtable h2 = Hashtable.Synchronized(h);
Console.WriteLine("ok4");
h2.GetEnumerator();
Console.WriteLine("ok5");
(h2 as ICollection).GetEnumerator();
Console.WriteLine("ok6");
....results in this output when compiled and run in .NET 1.1...
ok1
ok2
ok3
ok4
ok5
ok6
When compiled and run in .NET 2.0 beta 2 this is the result...
ok1
ok2
ok3
ok4
ok5
System.NullReferenceException: Object reference not set to an instance of an
object.
Regards,
Nev