How to get started with c#

  • Thread starter Thread starter Jason
  • Start date Start date
J

Jason

I need to know what all I need to get started. I have
downladed the .net framework runtme and the SDK. And I
wrote a hello world in c# but I don't understand how to
compile it. Do I need something else?
please email me at (e-mail address removed) as I forget to come
back here and read the threads LOL.
Jason
 
The SDK has a compiler you can use (csc)

You need to set up the environment variables first by running the
SDKVars.BAT file which youll find in the <SDKRoot>\bin directory.

You can compile the file using:

csc helloworld.cs

use csc /? for more help on command line building.

You may also be interested in the SharpDevelop IDE that lets you build forms
in a drag and drop manner without having to pay out for Visual Studio.

http://www.icsharpcode.net/OpenSource/SD/

Ask on any of C# or framework groups if yo have problems and do yourself a
favour. Don't post your un-obfuscated e-mail address because idiots love to
set their spam robots on people who do.

Regards,

--
Bob Powell [MVP]
C#, System.Drawing

The November edition of Well Formed is now available.
Learn how to create Shell Extensions in managed code.
http://www.bobpowell.net/currentissue.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

Read my Blog at http://bobpowelldotnet.blogspot.com
 
Back
Top