What bits and pieces do I need to be able to compile and run a simple Windows console application written in C#? Does the version of Windows matter?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need
A C# compiler comes with the free (as in beer) Visual C# Express Edition.
A command-line C# compiler (csc.exe) is included in every .NET Framework installation.
The .NET Framework is included in different versions in recent versions of Windows. See: What version of the .NET Framework is included in what version of the OS?
More recent versions of the .NET Framework can be downloaded for free from the Microsoft website.
The .NET Framework version needs to match the version the application was compiled against.