Alex Yakunin
Alex Yakunin

Reputation: 6678

List of known bugs in C# compiler

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.

Upvotes: 10

Views: 5913

Answers (3)

Dmitry
Dmitry

Reputation: 434

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

Upvotes: 8

Sam Harwell
Sam Harwell

Reputation: 99889

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

Upvotes: 2

Justin
Justin

Reputation: 86729

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!

Upvotes: 5

Related Questions