What do I need for a Windows C# quickstart? -


what bits , pieces need able compile , run simple windows console application written in c#? version of windows matter?

you need

  1. a c# compiler compile application
  2. the .net framework execute application

a c# compiler comes free (as in beer) visual c# express edition. command-line c# compiler (csc.exe) included in every .net framework installation.

the .net framework included in different versions in recent versions of windows. see: what version of .net framework included in version of os?

more recent versions of .net framework can downloaded free from microsoft website.

the .net framework version needs match version application compiled against.


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -