Page 1 of 1

Looking for C# tutorial site

Posted: Fri Nov 11, 2011 6:12 pm
by Vikhedgehog
Hi

Im going switch from VB.NET to the more powerful C# to create advanced apps and games. Sadly, this site lacks C# tutorials. Im asking if anyone knows a good tutorial site for C#, i want the tutorials have a good explanation and the tuts should be interesting like making an advanced webbrowser etc...

Re: Looking for C# tutorial site

Posted: Fri Nov 11, 2011 6:37 pm
by Agust1337
Me, Axel and some others i dont know about are c# coders, IM me if u need any help

Re: Looking for C# tutorial site

Posted: Fri Nov 11, 2011 6:43 pm
by Axel
C# isn't that different from VB.NET :P For creating a webbrowser, everything is the same but case sensitive, and requires a ";" in the end. For example

webBrowser1.navigate("lol.com")
=
webBrowser1.Navigate("lol.com");

I thought I'd need tutorials too, but I just tried to challenge myself and I was immediately into it :D

Re: Looking for C# tutorial site

Posted: Fri Nov 11, 2011 6:53 pm
by comathi
Axel wrote:
C# isn't that different from VB.NET :P For creating a webbrowser, everything is the same but case sensitive, and requires a ";" in the end. For example

webBrowser1.navigate("lol.com")
=
webBrowser1.Navigate("lol.com");

I thought I'd need tutorials too, but I just tried to challenge myself and I was immediately into it :D
Wow, I didn't know C# was that easy... I think I'll try it myself :D

Re: Looking for C# tutorial site

Posted: Fri Nov 11, 2011 7:10 pm
by Agust1337
some people find it hard to start because of the way you declare things like:

vb.net:
Code: Select all
dim str as string
dim i as integer
c#:
Code: Select all
string str;
int i;
It gets easy :P

Re: Looking for C# tutorial site

Posted: Fri Nov 11, 2011 7:13 pm
by Axel
I dont like tutorial sites, but examples are great :D
http://www.java2s.com/Code/CSharp/CatalogCSharp.htm = the best

Re: Looking for C# tutorial site

Posted: Fri Nov 11, 2011 9:08 pm
by Vikhedgehog
Agust1337 wrote:
some people find it hard to start because of the way you declare things like:

vb.net:
Code: Select all
dim str as string
dim i as integer
c#:
Code: Select all
string str;
int i;
It gets easy :P
Whoa thats awesome :O

C# will be my fav coding landuage soon :P

Re: Looking for C# tutorial site

Posted: Fri Nov 11, 2011 10:15 pm
by Vikhedgehog
Also thanks for the links and help agust and axel :D

Re: Looking for C# tutorial site

Posted: Sat Nov 12, 2011 11:41 am
by Codex
I find this site helpful most of the time: http://csharp.net-informations.com/ or you can just drop in on my site, we have C# tutorials too.

Re: Looking for C# tutorial site

Posted: Sat Nov 12, 2011 12:20 pm
by M1z23R
I don't agree, every single thing that can be done in C# can also be done in vb.net !
Ask mandai, he'll tell you ;))