Are there any open source C# compilers written in C#?
I know of Blue
, but it was written in 2001 and only supports C# 1:
Ideally, I'm looking for one which supports C# 3.0 - but even 2.0 would be fine.
Are there any open source C# compilers written in C#?
I know of Blue
, but it was written in 2001 and only supports C# 1:
Ideally, I'm looking for one which supports C# 3.0 - but even 2.0 would be fine.
mono's C# compiler is written in C#. If you need to just parse C# source text, you may use NRefactory.
How about the mono C# compiler, which is written in C# itself. You can browse the source here.