Click here to Skip to main content
15,886,919 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am trying to see whether anyone has had good experience with alternative compilers for C# code. Preferably this would be for a PC since the code would execute on a PC.

Also, theoretically diff compilers might compile differently such that there might be performance differences - has anyone tested this? I can do a test with computationally intensive stuff and post results here.

What I have tried:

I have used only Visual Studio.
Posted
Updated 7-Aug-23 12:40pm
v4
Comments
PIEBALDconsult 7-Aug-23 19:44pm    
Visual Studio is not a compiler anyway.

There really are no alternatives.

The compilers for .NET compile down to MSIL, Microsoft Intermediate Language. It's a processor agnosti bytecode that is "compiled" by the .NET CLR JIT Compiler into machine code specific to processor the CLR is running on. There are no alternatives.

The "alternative" to the compilers built into .NET is Roslyn - The .NET compiler platform[^] which is open source.

There are alternative IDE's but they all use the compilers built into .NET and Roslyn to build the code.
 
Share this answer
 
The only other C# compiler I know of is the mono project: Home | Mono[^]

Whether it suitable to your purpose, or has better or worse compilation you will have to test for yourself. This page may help decide whether you can use mono or not Application Portability | Mono[^]

The mono project also provides MonoDevelop | MonoDevelop[^] as an alternative IDE to VisualStudio. Once again, you'll have to try it out for yourself and decide if it meets your needs or not.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900