C# namespace search
I'm new to c# and I'm always Googling to find namespaces. Is there a be开发者_如何学JAVAtter way, a namespace search page or something like that?
Thanks
Are you looking for the .NET Class Library: http://msdn.microsoft.com/en-us/library/ms229335.aspx
If you're using visual studio (express) you can simply use the help (either locally, or it will redirect you to the msdn website).
On the other hand I've often found that if a site offers exactly the information you look for, it's often easier to use google than the sites build in search functions :-)
There's a nice list of all namespaces in the .NET libraries on MSDN.
You could try the Resharper plugin
If you're a student or developing open source projects, it's free
Are you referring to finding the right DLL for a given namespace? Some namespaces are spread amongst several DLLs. Each class page on MSDN will list which DLL that class is in. E.G. The DataContractAttribute class is in the System.Runtime.Serialization.dll.
精彩评论