C # namespace lookup

I am new to C # and I am always Googling to find namespaces. Is there a better way, a namespace lookup page, or something like that?

thank

+3
source share
5 answers

You are looking for a .NET class library: http://msdn.microsoft.com/en-us/library/ms229335.aspx

+1
source

If you are using visual studio (express), you can simply use this help (either locally or redirect you to the msdn website).

On the other hand, I often found that if the site offers exactly the information you are looking for, it is often easier to use Google than sites that are built into the search functions :-)

+1
source

.NET MSDN.

+1
+1

Do you mean finding the right DLL for a given namespace? Some namespaces are distributed among several DLLs. On each page of the class in MSDN, the DLL in which this class is located will be indicated. EG The DataContractAttribute class is located in the System.Runtime.Serialization.dll file.

+1
source

Source: https://habr.com/ru/post/1783964/


All Articles