About 50 results
Open links in new tab
  1. Is it possible to install a C# compiler without Visual Studio?

    May 14, 2009 · I want to build projects from the command line. Is it possible to deploy a C# compiler without installing Visual Studio?

  2. Visual Studio 2022 gives "internal error in the C# compiler" in Debug ...

    Dec 17, 2021 · On trying to put a watch the value of any object in Debug mode in Visual Studio 2022, I get "internal error in the C# compiler" instead of the actual value. Many posts in StackOverflow …

  3. Which version of C# am I using - Stack Overflow

    At compile time C# version is defined by setting in the project file for project (can be viewd in VS settings of the project as shown in another answer) and explicit or implicit switch passed to compiler if …

  4. compilation - How do you compile C#? - Stack Overflow

    Feb 7, 2017 · Microsoft offers the Visual Studio Express edition for free, which has everything you need to get started with C#. However, you can compile using just the command line compiler (csc.exe), …

  5. Is C# partially interpreted or really compiled? - Stack Overflow

    Jan 12, 2012 · 96 C# is compiled into IL, by the c# compiler. This IL is then compiled just-in-time (JIT) as it's needed, into the native assembly language of the host machine. It would be possible to write a …

  6. While debugging I get this when using Watch: Internal error in the C# ...

    AssemblyBuilder assemblyBuilder = AssemblyBuilder.DefineDynamicAssembly(assembly, AssemblyBuilderAccess.RunAndCollect); Eventually I understood that it's happened only when …

  7. Compiling/Executing a C# Source File in Command Prompt

    Feb 16, 2009 · CSC.exe is the C# compiler included in the .NET Framework and can be used to compile from the command prompt. The output can be an executable ".exe", if you use "/target:exe", or a …

  8. c# - How to get csc.exe path? - Stack Overflow

    Jul 12, 2011 · An alternative way to use the C# compiler is from within your C# program. Microsoft describes this approach here. I found a nice description how to use response files with CSC.exe. …

  9. Is it possible to compile a single C# code file with the .NET Core ...

    Sep 6, 2017 · Yes, it is possible to compile a single file with csc or vbc compilers in .NET Core. To invoke the Roslyn compiler directly it is necessary to use the command line driver csc. {exe|dll} and …

  10. Where is the official C# compiler from the .NET SDK package?

    Feb 4, 2024 · I am trying to compile a C# file using the official compiler included in the .NET SDK package without using the Visual Studio IDE. The package is installed in C:\Program …