Reference Library for all C# .NET methods
There are a lot of built in methods and properties in C# and .NET, such as Trim()
and Length()
开发者_Go百科. Where can I find a complete list of these methods and properties for built-in types?
If you need a reference of the .NET class library and all the classes and methods it provides, MSDN is almost definitely the single most useful online resource — See e.g. .NET Framework Class Library Overview (introduction) and .NET Framework Class Library (reference library).
If all that you need is a reference of .NET string methods, again:
- Go on MSDN
- Find the reference page for the
System.String
class - Browse to the bottom and follow the link to the class members page: there you are.
.Net doesn't have "functions", everything you've listed is a method that is called on an object. Some are called on instances of objects, and some are called on the static type of the object.
Having a list of all functions would be pointless without knowing what objects they are related to.
There are also many overloads for methods, so they can be called with different parameters.
So what you really need (if you want them all) is a table of Object, Static or instance method, Method, Overloads.
You can also browse the methods from Object browser using the visual studio 2005 or latest versions.
精彩评论