Advice on moving to C#

R

RW

Looking for advice on moving to C# (as hobbyist/amatuer).

Background:
* Coming from VB6 (aka "classic" VB)
* Want to learn C# "just to see if I can"
* Want to also continue with VB6
* Don't want to spend hundreds of $$ (at first, anyway)

Suggestions for least expensive method of obtaining the language and
IDE?
 
A

Arne Vajhøj

Looking for advice on moving to C# (as hobbyist/amatuer).

Background:
* Coming from VB6 (aka "classic" VB)
* Want to learn C# "just to see if I can"
* Want to also continue with VB6
* Don't want to spend hundreds of $$ (at first, anyway)

Suggestions for least expensive method of obtaining the language and
IDE?

..NET Framework is free for download (it also comes with Windows, but you
may want to upgrade).

The .NET Framework comes with command line compilers and other
development tools.

You can then install an IDE on top of that. There are a few
free IDE's available:
* Visual Studio Express Edition
* SharpDevelop

Pick one - or both if you want.

Then either internet tutorials or a book. I would recommend
a book, but books are not free.

Arne
 
B

Bert

In RW
Suggestions for least expensive method of obtaining the language and
IDE?


MS Visual Studio Express. It's free.

I had been using VS Express 2010 on Windows XP, but now use the 2013
version on Win 7.
 
J

Jeff Gaines

Looking for advice on moving to C# (as hobbyist/amatuer).

Background:
* Coming from VB6 (aka "classic" VB)
* Want to learn C# "just to see if I can"
* Want to also continue with VB6
* Don't want to spend hundreds of $$ (at first, anyway)

Suggestions for least expensive method of obtaining the language and
IDE?

As others have said VS Express is probably the best programmer's IDE in
existence and it's free,

I think the transition from VB to C# is straightforward, especially if you
want to access the API as prototypes are similar. Just remember myvariable
and MyVariable are different in C# unlike VB :)
 
A

Arne Vajhøj

As others have said VS Express is probably the best programmer's IDE in
existence and it's free,

Visual Studio is more or less the only IDE in professional .NET
development.

But within the free IDE's then I do not consider VS Express
better than SharpDevelop.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top