Where can I get list of common .NET classes
I'm using SyntaxHighlighter script by Alex Gorbatchev on my wordpress blog. It's doing pretty well but I want it to highlight common c# classes and not only keywords. So I 开发者_如何转开发need list of common c# classes. Any advice where can I get one?
How about .NET Framework 3.5 Common Namespaces and Types Poster?
MSDN? Here's the contents of the System
namespace: http://msdn.microsoft.com/en-us/library/system.aspx
I don't think there's any consensus on what constitutes "common": you could consider highlighting classes from System
, System.Collections.Generic
and System.Text
. There'll be other important namespaces specific to, say, web development or WPF.
Reflector has always been one of my favorite tools for explorer the .net libs.
精彩评论