I am learning C #, but the fact that it requires an IDE with a compiler makes things a bit more complicated.
Only a .Net SDK is required to create a C # application, and it does not need an IDE.
Part of the SDK is csc.exe , which is a C # compiler.
With the SDK installed, you can compile and run the program in C # as follows:
using System; namespace SampleApplication { static class Program {
using this command line.
C:\TEMP>csc test.cs Microsoft (R) Visual C# 2008 Compiler version 3.5.30729.4918 for Microsoft (R) .NET Framework version 3.5 Copyright (C) Microsoft Corporation. All rights reserved. C:\TEMP>test.exe Hello world!
veight
source share