How to write and compile c# program using notepad and .microsoft.net framework
How We can write c# application using notepad and csc compiler from .net frameworkwithout using visual Studio.
http://www.tomasvera.com/programming/compiling-a-c-project-using-command-line-tools-tutorial/
C:>CSharp <path of the file>
D:>CSharp
C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe nomefile.cs
or
C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe nomefile.sln
or
C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe nomefile.csproj
YourFilePath>csc filename.cs