views:

80

answers:

3

I have been working with PHP for a long while now, and I am in general pretty familiar with Microsoft IDEs and concepts behind everything including OOP. What I am trying to find, And have looked for, is a tutorial or reference website that shows the specifics about the syntax of C# like how to make classes, functions, variable types...ect. I'm not looking for all the other background information im just trying to find plain old examples of how to use the C# language. Maybe something sort of like the PHP manual.

I don't wanna sound like I am demanding something or anything, but if you know of anything you've seen or used a quick link would be great.

,Thanks!

+1  A: 

There are these various chapters about C# on MSDN which include a language description and reference, examples, and samples.

I knew C++ already, and found this sufficient to learn to C#.

ChrisW
+1  A: 

ASP .NET C# - avoiding the use of webforms - we are talking ASP .NET MVC here.

www.asp.net/mvc

Lots of tutorials here...

SaM
He may not want ASP at all: just the C# language.
ChrisW
Well, I am building a web site. But I am trying to avoid asp, and basically just use C# in the same manner you use PHP sort of. If that makes any sense. I am also not going to be using MVC because it depresses me that that is something I have spent so many hours on building something similar to that in PHP, and then moving to ASP.NET finding that its already done for you.
I am trying to avoid all this fake server side HTML tags and attributes, makes me want to barf.
+2  A: 

This SO thread has links to very good resources. You should also check out the virtual labs on C#.

JP Alioto