Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can you find the available Namespaces and their contents in C#?

Tags:

namespaces

c#

C# comes with standard namespaces, like System ... and the System namespace hierarchy.

What other namespaces are built into C#? Where can I find a list of the namespaces and contents?

like image 862
Mary B. Avatar asked Oct 16 '25 21:10

Mary B.


1 Answers

The standard C# namespaces that you're looking for are .NET namespaces, because C# is a language that is built on top of .NET.

You can view the entire .NET API here: https://learn.microsoft.com/en-us/dotnet/api/

For instance, if you are using C# with the .NET Framework, then choose that under the All APIs listing like this:

enter image description here

like image 63
Shaun Luttin Avatar answered Oct 18 '25 10:10

Shaun Luttin



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!