c# documentation

  • Thread starter Thread starter Carl Forsman
  • Start date Start date
C

Carl Forsman

where can i found C# doucmentation like Java Doc?

Is C# just like Java where it has

- class / interface
- reference to object through . (dot) notation
- create object through new keyword
- interface is all empty
- had util library like java.util.*
- had io library like java.io.*
 
where can i found C# doucmentation like Java Doc?

Start here: http://msdn.microsoft.com/en-us/library/aa187916.aspx

Depending on the version of the .NET Framework you're targeting, go to
either Visual Studio 2008 (Framework 3.x) or Visual Studio 2005 (Framework
2.0).
Is C# just like Java where it has
- class / interface
- reference to object through . (dot) notation
- create object through new keyword
- interface is all empty

Yes to all these.
- had io library like java.io.*

Yes, but System.IO is a .NET Framework library and is therefore available to
all .NET languages, not just C#:
- had util library like java.util.*

No, but there are tons of things in the .NET Framework.
 
Start here: http://msdn.microsoft.com/en-us/library/aa187916.aspx

Depending on the version of the .NET Framework you're targeting, go to
either Visual Studio 2008 (Framework 3.x) or Visual Studio 2005 (Framework
2.0).

I worded that badly. The Visual Studio 2008 link will provide documentation
on C# 3.0, while Visual Studio 2005 will provide for C# 2.0. The Framework
version is not directly related to VS version, at least not with 2008.
 
Back
Top