What's Out There?

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.
 
T

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.

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

--Tim Sprout
 
A

Arne Vajhøj

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top