I have a bug to report in .NET 2.0 beta 2.

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
 
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).

And second... where can I search for bugs so that I can see if I'm reporting
something that has already been reported?

Cheers.
 
J

Jay B. Harlow [MVP - Outlook]

Nev,
| 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).

See "Product Feedback Center" at:

http://lab.msdn.microsoft.com/vs2005/

It allows you to search for & submit both suggestions & bugs on VS 2005.

For a list of forums dedicated to VS 2005 see:

http://forums.microsoft.com/msdn/

Hope this helps
Jay

| 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
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top