tags:

views:

376

answers:

3

Is there such a list? I don't expect to get a complete one, but the list of most well-known ones must be enough.

+4  A: 

Try http://connect.microsoft.com/feedback/default.aspx?SiteID=210

Which version of the .Net framework btw?

I believe that the CLR has been largely stable and bug free since .Net 1.1 SP 1, certainly if in doubt, assume that its a bug in your code not .Net!

Kragen
The compiler has some real bugs, one related to enums. That bug is going to be a feature btw.
Dykam
We're using .NET 3.5 SP1 now.
Alex Yakunin
+1  A: 

The C# compiler emits calls to the constructor System.Decimal(int32, int32, int32, bool, byte) for decimal literals like the following:

public static readonly decimal MaxValue = 79228162514264337593543950335M;

If you are implementing mscorlib, and you leave out this constructor, the C# compiler crashes rather than giving error message CS0656 indicating a member required by the compiler is missing.

I know of bugs in the C# IntelliSense engine, the .NET debugger, and in the .NET framework, but you just asked about the compiler. :o

280Z28
+5  A: 

Hello Alex,

the list of recently fixed bugs could be found here: http://msdn.microsoft.com/en-us/library/cc713578.aspx They call it "Breaking changes".

Dmitri Maximov
Really nice list ;)
Alex Yakunin