What's Out There?

  • Thread starter Thread starter Tim Roberts
  • Start date Start date
T

Tim Roberts

As I'm getting started up with C#, I understand that much of the beauty is
the huge set of classes in the CLR. The same thing is true of my current
favorite language, Python; the beauty is the richness of the standard
library, allowing me to craft useful programs in just a few lines.

With Python, I can find out what's available to me by browsing through the
..py files in the standard library directory. That's something I seem to be
missing with C#: I can't get a grasp on what tools are at my disposal.

Can you suggest a good resource that collects the CLR classes in a useful
and easy-to-browse reference form? MSDN has good drill-down information,
but it doesn't seem to be the right choice for browsing. It just takes too
long to move from place to place for each tidbit of info.
 
Tim said:
As I'm getting started up with C#, I understand that much of the beauty is
the huge set of classes in the CLR. The same thing is true of my current
favorite language, Python; the beauty is the richness of the standard
library, allowing me to craft useful programs in just a few lines.

With Python, I can find out what's available to me by browsing through the
.py files in the standard library directory. That's something I seem to be
missing with C#: I can't get a grasp on what tools are at my disposal.

Can you suggest a good resource that collects the CLR classes in a useful
and easy-to-browse reference form? MSDN has good drill-down information,
but it doesn't seem to be the right choice for browsing. It just takes too
long to move from place to place for each tidbit of info.

Hi Tim Roberts...I enjoy your posts over at comp.lang.asm.x86

--Tim Sprout
 
Tim said:
As I'm getting started up with C#, I understand that much of the beauty is
the huge set of classes in the CLR. The same thing is true of my current
favorite language, Python; the beauty is the richness of the standard
library, allowing me to craft useful programs in just a few lines.

With Python, I can find out what's available to me by browsing through the
.py files in the standard library directory. That's something I seem to be
missing with C#: I can't get a grasp on what tools are at my disposal.

Can you suggest a good resource that collects the CLR classes in a useful
and easy-to-browse reference form? MSDN has good drill-down information,
but it doesn't seem to be the right choice for browsing. It just takes too
long to move from place to place for each tidbit of info.

You can get a copy of the MSDN docs on your own PC.

It is structured with namespaces so browsing should
be possible.

Not that much different from Python - just bigger,
which is supposed to be a good thing.

Arne
 
Back
Top