Summary of C# Classes

Anyone know if there is a URL, similar to the Java Docs Class summary, that gives a summary of all C# classes, fields, methods, interfaces, inheritance etc where you can click on a specific NameSpace and it will give you all the Classes in that NameSpace, and if you click on a specific Class, it will give you more information about it, such as its methods, or fields

(Similar to the Java docs Class summary, where it lists the packages and Classes in a particular package in the left Navigation bar, then information about a selected Class in the content pane.)

Appreciate anyone's help. Thanks



Answer this question

Summary of C# Classes

  • swells

    Hi Dave,

    Thanks for the quick reply & the info about the Classes.

    Are all the Classes in NameSpaces (in the .Net Framework) used by all the programming languages similarly For example is the System.Windows.Forms Class used by the other languages To ask it another way, are the predefined Classes for C# also used by J# or VB, and if you become familiar with .Net Framework classes, are they the pretty much the same for the other .Net languages

    Thanks.


  • JonS1

    C# itself doesn't have any classes or interfaces, but like other languages that target .NET Runtime, it uses the Framework Library that is provided with it.

    You can find the class library reference here:

    http://msdn2.microsoft.com/en-us/library/ms306608.aspx



  • Wayne_Peterson

    That's correct. All languages use the .NET Framework library and use the same classes, however, some also use their own classes on top of it. For example, Visual Basic uses the Microsoft.VisualBasic dll and namespace, and J# use their own J# components to mimic the Java Runtime.

  • zhou0620

    MSDN has heirarchal breakdown of Namespaces to Classes to Methods to Properties. Do a search on Namespaces and you'll find an index into the whole 9 yards.

    ****

    Get a snapshot of your web server's performance counters (cpu and disk stress, available memory, request wait time, requests queued, requests rejected, current connections, bytes total and more) from anywhere/anytime using this ASP.NET script. It also uses mobile forms so easily view on Cellphones and PDAs. See WSP Snapshot 1.0 at http://www.ifusionsoft.com


  • Summary of C# Classes