Search Forum
(57242 Postings)
Search Site/Articles

Archived Articles
712 Articles

C# Books
C# Consultants
What Is C#?
Download Compiler
Code Archive
Archived Articles
Advertise
Contribute
C# Jobs
Beginners Tutorial
C# Contractors
C# Consulting
Links
C# Manual
Contact Us
Legal

GoDiagram for .NET from Northwoods Software www.nwoods.com


              

C# From Scratch

1) Download and install .NET Framework Beta 2

2) Download the C# Manual and take a look at it.

This has A LOT of important information.
GREAT TUTORIAL FOR BEGINNERS!!

3) Create a file called hello.cs which has the following code:
using System;
class Hello {
 static void Main() {
  Console.WriteLine("Hello world");
 }
}

4) Go to the command line then make sure you cd to the directory where your hellos.cs file exists) and type in:
csc hello.cs
The above should be done in the directory where hello.cs exists.

5) Type in:
hello
You should see the output!

Now you can start playing around with C#!!