hi,
You have finished a book AND 6 CDs and havnt written your first program yet
???
Well, first you need to download .net framework SDK, which will be the
runtime. The current version is 1.1. get it from :
http://www.microsoft.com/downloads/details.aspx?FamilyID=9b3a2ca6-3647-4070-
9f41-a333c6b9181d&displaylang=en
Install it. Once u r done installing it, you create a new blank text file
and type (or copy paste) the following:
//----START
using System;
namespace NHello
{
class Cintro
{
public static void Main()
{
Console.WriteLine ("hello world & behold!!!!! This is my first ever
coolest C# managed assembly.");
}
}
}
//----END
save it as firstflight.cs. Now you need to pass this file's name as a
"command line argument" to the C# compiler which is called csc.exe. Its
located inside your windows directory (%windir%), inside the
"Microsoft.NET\Framework\v1.1.4322" folder. Open a command prompt and goto
that folder with whatever means possible. and type:
csc firstflight.cs
if you saved your firstflight.cs inside the same folder as csc.exe the above
statement will compile and produce a firstflight.exe which you can run from
the same command prompt.
Here you go, you have just made your first .net managed application.
I hope that helps,
Ab.
http://joehacker.blogspot.com.