Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reference Library for all C# .NET methods

Tags:

c#

.net

There are a lot of built in methods and properties in C# and .NET, such as Trim() and Length(). Where can I find a complete list of these methods and properties for built-in types?

like image 679
Arash Avatar asked Nov 22 '25 09:11

Arash


1 Answers

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.
like image 138
stakx - no longer contributing Avatar answered Nov 24 '25 23:11

stakx - no longer contributing