up vote 64 down vote favorite
34
share [g+] share [fb]

The .NET framework is massive. I've used it for years and I've still not used most of it.

I'd like to expand my knowledge of the Framework's backwaters but just reading thought it seems daunting. So I thought I'd tap up the Stack Overflow community first.

What part have you found to be the most surprisingly useful? What's your favourite obscure namespace? And conversely are there any shiny bits that are best avoided?

link|improve this question
31  
Of course, the more an answer is voted up in this question, the more it is actually wrong, because it means that other people agree and thus value it. Truly under-valued areas of .NET should have a score around zero... – Greg Beech Jul 17 '09 at 17:17
14  
Not really. It just means that those people find the answer to be true. Of they vote it up becasue they didn't even realize it was in the framework. – Matthew Whited Jul 17 '09 at 17:40
1  
LOL, an interesting thought, but I'm voting up the items that I believe are useful and I've personally observed people ignoring or discrediting them. – 280Z28 Jul 17 '09 at 17:46
1  
shouldn't this be a community wiki?? – Stan R. Jul 18 '09 at 0:24
4  
No...why would it be? – womp Jul 18 '09 at 3:31
show 1 more comment
feedback

33 Answers

1 2
up vote 140 down vote accepted

The degree of consistency across this huge framework.

Whenever I need to use a new part of the Framework, I'm able to pick it up quickly, because of the fact that it mostly all follows the same rules.

With .NET, it's not that the whole huge thing is right in your face, but rather that, when you need something, it's within reach.

link|improve this answer
3  
Definitely under-valued. – 280Z28 Jul 17 '09 at 17:29
98  
And if you don't what what he's talking about, try learning PHP. – spoulson Jul 17 '09 at 18:13
2  
@spoulson I would upvote that more if I could! – corymathews Sep 29 '09 at 21:15
3  
Unfortunately, they didn't have "CLS Compliance" from the get-go, and it shows in the little nooks and crannies of the framework. However, compared to other frameworks, .NET is a shining star. – John Gietzen Oct 9 '09 at 18:11
2  
It's a shame some of the tools to use with it don't keep this consistancy. I'm looking at you DevExpress. – whybird Jun 4 '10 at 3:50
show 1 more comment
feedback

Linq is truly amazing.

link|improve this answer
1  
Yeah, the whole idea, and hoe well it integrated with C#. Saves so much lines of code. – Dykam Jul 17 '09 at 17:09
31  
yes, but the question is "under-valued" and I have yet to met a .NET developer who dismisses Linq as not worth it. – Andy_Vulhop Jul 17 '09 at 17:27
10  
I think it's often confused with Linq-to-SQL and dismissed. – mgroves Jul 17 '09 at 18:02
2  
Yea, I used to be anti-Linq (because I didn't understand it -- got it confused with "Linq-to-SQL") but I watched a few videos on it and I really liked it. Before then, the only "benefit" I found was extension methods which when first learning 3.x were confusing to me. – Zack Jul 17 '09 at 18:32
1  
@codemonkey4hire, I met people who see it as some alien-like evil. I count that as under-valued. – Dykam Jul 17 '09 at 18:37
show 1 more comment
feedback

In general, I think Reflection is glazed over by a LOT of .NET developers. True, it is not usually the best tool for the job, but there are plenty of times it can help solve a really tricky issue.

link|improve this answer
16  
I think it should be glazed over more often. Misuse is rampant, and like multithreading the hazards usually far outweigh the benefits. – MusiGenesis Jul 17 '09 at 17:03
4  
And, at the very least, Reflection is nice for displaying current assembly version number on a form/website. – Andy_Vulhop Jul 17 '09 at 17:31
1  
I've seen some frighteningly bad uses of reflection myself. I'm pretty sure you could get through your whole career without missing it. I did write my own unit testing suite with reflection back before they were all over the place, though. – quillbreaker Jul 17 '09 at 19:17
1  
The ONLY time I EVER user reflection is dynamic plugin loading. Every other use is abuse in my eyes. – John Gietzen Oct 9 '09 at 18:18
1  
Reflection underlies nearly everything in the framework. Without reflection, Enum.GetNames or Enum.GetValues would not work, and so on. For programmers, it is not as useful. For library developers, it is essential. – AMissico Dec 31 '11 at 1:16
show 3 more comments
feedback

The regular expression engine in .NET is far more powerful than most people think. It's one of the best and most robust regex implementations around.

Although some people misuse it, in specific situations it can save you lots of time and effort.

link|improve this answer
1  
The Compile option is especially nice when use right. – Dykam Jul 17 '09 at 17:06
2  
Erik Naggum kind-of-quote; "A novice once had a problem. He said I know I'll just use Regular Expressions. The novice now had TWO problems"... – Thomas Hansen Jul 17 '09 at 19:45
36  
I'm so sick of that quote. You can't mention Regular Expressions without someone dropping it. It is annoying, overused and honestly I think it reflects badly on the people who use it. – KingNestor Jul 17 '09 at 21:21
1  
@Paval: Most of the major regex engines (i.e. Perl, Java and a few others) can parse nested brackets, IIRC. Jeffrey Friedl's Regex book has a separate chapter about non-standard extensions, if you want look it up. – nikie Dec 22 '09 at 8:47
show 5 more comments
feedback

All of the encoding related stuff in System.Text. I won't get into a rant about how most developers don't understand anything about encodings even though they really, really should, and just express my gratitude that so many encodings are implemented in .NET, along with quite obscure and specialist things like different Unicode normalization forms etc.

(And if you want an example of why you should know this stuff, have a think about how you'd strip non spacing marks (e.g. ñ -> n, é -> e) to make SEO and browser-friendly URLs. A huge lookup table? Nah. Try 5 lines of code.)

link|improve this answer
3  
5? 7? Whatever. It's not the most concise way to write the code. The point is that it's not many. In any case, the question wasn't "what does .NET have that other platforms don't" it was "which parts of .NET are under-valued by developers". If you have this type of facility in your platform and you value it then good on you - one less person that needs convincing. – Greg Beech Dec 26 '09 at 21:49
show 1 more comment
feedback

For me, the first thing that comes to mind is Generics. Easy to understand, use, makes sense and most of all, improves performance.

link|improve this answer
4  
Yeah, CLI support of generics is really powerfull. – Dykam Jul 17 '09 at 18:41
show 3 more comments
feedback

One man's backwater is often another man's metropolis, but still -- System.Globalization gets my vote. The amount of work it saves me (especially with different calendar systems) makes it my favorite underrated namespace.

link|improve this answer
show 2 more comments
feedback

Mono on Mac OS X, Linux, ...

link|improve this answer
feedback

The Delegate. Hard to really call it under-appreciated since it is the underpinnings for LINQ, Lambda, Anonymous Delegates, and Events. But the code is often written in such a way that you don't even know you are using a Delegate. Many developers use them every day without even knowing what they are.

link|improve this answer
1  
Very true. On the other side Delegates can be stupid, as you can't assign a delegate from type ADelegate to a delegate with the type BDelegate, while they both expose the same prototype. – Dykam Jul 17 '09 at 18:39
7  
Saying that makes those stupid would be like saying that type checking is stupid because ClassA and ClassB can have the same exact fields/properties/methods but aren't interchangeable. Delegates aren't duck-typed. – scwagner Jul 17 '09 at 18:53
feedback

I'll add a second choice: the entire XML API in System.Xml.*

It took me a long time to get comfortable with it. XmlReader scared me away completely! I had to get my feet wet with XmlDocument, then slowly added a little XPath for selection (I needed to stop and learn about XML namespaces at that point). I learned a bit of XPathNavigator (which has some really underutilized features, like AppendChild()), XslCompiledTransform, all the XML Schema stuff, and then, finally, XmlReader and XmlWriter.

XmlReader and XmlWriter aren't that bad if you take your time, understand what the different kinds of node are, and allow four times as much time as you thought it would take you to debug!

But I've been able to do some fairly neat things with this stuff:

  • Process a 10GB XML document by

    • using XmlReader.ReadSubTree for each element under the root, then
    • using XslCompiledTransform on the subtree

    This was very helpful with SSIS, wihch otherwise wanted to read the entire 10GB into memory.

  • Create sample data based on a set of XML Schemas, using the System.Xml.Schema.XmlSchemaValidator class

    This class is a hidden gem. It really needs to be in a different namespace. Almost everything else in the System.Xml.Schema namespace is named "XmlSchema*something* and represents part of the object model of an XML Schema. The one class that fits that naming pattern but is not part of the SOM is xmlschemavalidator:

The XmlSchemaValidator class provides an efficient, high-performance mechanism to validate XML data against XML schemas in a push-based manner.

Long story short, this thing will tell you, at any point in the logical processing of an XML document, what is valid at the current point. You then tell it which of the valid choices you made, and it will tell you what's valid at that point, etc. So, if you write one of the valid choices when it says they've valid, you'll wind up producing a valid output document.

Enough's been said about LINQ to XML, so I won't say more. I will finally just mention the System.Runtime.Serialization.XmlDictionaryReader and XmlDictionaryWriter classes, just so I can say "binary XML" in a sentence.

link|improve this answer
show 6 more comments
feedback

Memory management and underlying CLI design

The bump pointer memory allocator combined with user-defined value types and a fallback ability to use unsafe code. A great step forward where the JIT is the only thing keeping us from passing C++ performance nearly across the board. That and the fact that it's already improved to the point that it's not far off. This is undervalued because there remain a large group of people who do not see the current state of things or the potential that lies before us in this respect.

Phenomenal inter-language coding support. Every system should be designed for such - allows comfort now and flexibility in the future.

General thought on the framework

There are "tricks" everywhere. Since I've been working on implementing a test CLI VM, I've picked up a great number of them and I try to answer them wherever I see them asked in specific questions. In general, if something seems awkwardly verbose, there's an easier way that you just haven't identified yet. And when you do, you'll think "yeah, that does make sense. :)"

link|improve this answer
11  
"unsafe" is a beautiful keyword, but it deserves a better-sounding name, since it sounds like only a crazy person would want to write unsafe code. I nominate "oldschool" as an alternative. – MusiGenesis Jul 17 '09 at 17:01
8  
'Unsafe' is precise though. A managed machine (CLI) that allows verifiable code means we can have extremely fast, extremely safe code for both reliability and computing in untrusted environments. Code that breaks these rules may or may not be faster - its only guaranteed ability is removing provable safety. – 280Z28 Jul 17 '09 at 17:04
3  
It's still managed code. Unsafe code in C# compiles to the same IL bytecode, it just uses abilities like passing unmanaged (raw) pointers to instructions like stind (store indirect/to a pointer) and ldind (load indirect). There are many "unsafe" instructions documented in ECMA-335. – 280Z28 Jul 17 '09 at 17:19
3  
I nominate "pointy", because you're probably using pointers, and you may stick a hole in your app if you arn't careful. – quillbreaker Jul 17 '09 at 19:20
show 3 more comments
feedback

Ever since the introduction of System.Web.Mvc namespace I am a happier man.

link|improve this answer
1  
That is not really a part of dotNET, it's an external lib. By accident from microsoft and thus places in their namespace. – Dykam Jul 17 '09 at 17:06
5  
MVC is just out-of-band right now. It'll be fully integrated into .NET 4.0 – Bob King Jul 17 '09 at 17:17
feedback

I really like the System.Diagnostics namespace. There is a lot of cool stuff in there. Have you ever used the Stopwatch, PerformanceCounter or StackTrace classes?

link|improve this answer
feedback

The System.Linq.Expressions namespace. The ability to treat code as data so that you can manipulate it is a very powerful thing. You can also use it to dynamically build up simple methods.

link|improve this answer
1  
I agree. I've recently read John Skeet's very solid 'C# in Depth' and it's amazing how almost every new feature in .net 3.0 is there to support Linq. It is a game changer! – Jan Bannister Oct 1 '09 at 11:38
1  
The new expression tree stuff in .NET 4 just underlines this point. In .NET 4 it is possible to build complex methods as well. – JohannesH Dec 22 '09 at 9:21
feedback

The all powerful Windows WorkFlow Foundation.

link|improve this answer
8  
Still don't know what this is to be completely honest. :-/ What is it used for? :x – Zack Jul 17 '09 at 18:34
1  
This is by far the most underutilized component. Sadly, until they build better IDE support for it, it's not going to go anywhere. Why do something with 15 WF classes when you could do it with 3 regular ones? – womp Sep 29 '09 at 20:40
show 1 more comment
feedback

LINQ to XML is pretty damn cool and often overlooked. Oh, and I guess Expression Trees form the basis of a lot of that coolness.

link|improve this answer
feedback

The fact that it follows a public spec and is JITTED so that:

  • You can use the same program in any supported architecture (i.e. X86, x64)
  • You can run it in a lot of OS with mono. More operating systems will probably be supported in the future...
  • Anyone can develop a .NET language

With any luck you'll have one program that will be able to run in any machine, programmed in any language you like, running on any operating system there is.

link|improve this answer
feedback

My favorite underutilized features are probably Attributes and Reflection. Of course, those two go together a lot of the time.

link|improve this answer
show 1 more comment
feedback

I must say the same code running on 32 and 64 bit platforms is very nice.

All kinds of gotchas with unmanaged code.

link|improve this answer
feedback

I found reading about the Common Intermediate Language to be very interesting, if you want to see how things work under the hood in .Net. Here is a useful tutorial if you want to learn how to write it.

link|improve this answer
feedback

The .NET Framework... I have seen many people not take the time to see if the framework has built-in support for something they want to do and they just go ahead and and roll their own. There is also a large group of people that think their custom code is faster than the classes that Microsoft (or Mono) has in the framework only to complain and having problems with performance and maintenance later. (And of course this is Microsoft’s fault because the bug would never be in custom code.)

link|improve this answer
feedback

.NET 2.0+ XSLT implementation (XslCompiledTransform). Not many people realize this, but it's a full-featured solution with complete VS integration - you also get debugging with step-through and breakpoints, the complete functionality of Watch window with XPath expressions, and so on. Combined with the ability to create custom functions in C#/VB with <msxsl:script> blocks (not many people know that when you precompile your XSLT, this does not require FullTrust - MSDN omits this important piece of information), it is a very powerful tool for many XML processing tasks, and overall one of the fastest and most convenient XSLT 1.0 implementations out there.

Oh, and don't forget to turn on the hidden XSLT IntelliSense feature!

link|improve this answer
show 1 more comment
feedback
  1. The general feeling that since its JITed it will slower!
  2. API's as such. API's in general are designed beautifully!
  3. Activator Class
  4. Linq to Xml
link|improve this answer
show 1 more comment
feedback

I have to give my highest props to the CLR (Common Language Runtime). .NET simply couldn't be .NET without it.

It single-handedly allowed resurrection of the very broken, prior implementations of Visual Basic, continuously showers new life into custom SQL library development, and continually / automatically enhances cross-language execution-time efficiency.

An enterprising, dual-platform developeer buddy of mine is already researching how to get appropriate dev-tooling into VS2k8 so he can code iPhone apps using the Studio tool-set.

link|improve this answer
1  
Any progress? – Viktor Dahl May 28 '11 at 20:04
show 3 more comments
feedback

Closures with LAMBDA expressions, saves a lot of headache...but can be just as evil if used in the wrong hands.

link|improve this answer
show 1 more comment
feedback

I guess the whole component model is heavily under utilized. This provides a great tool to write plugins into the OS and other huge products. Yet I find it little understood (at least by me) and little documented...

link|improve this answer
show 1 more comment
feedback

Attributes, along with the ability to define your own (there are a couple of oddities in the BCL for things that should be interfaces though). When I've used them, they've been invaluable, and solve problems that would be very difficult or hacky to solve any other way.

link|improve this answer
feedback

The element of least surprise.

Pretty much inline with what John Saunders said.

link|improve this answer
feedback

I can't believe nobody commented on GDI+! Talk about doing anything you ever wanted with graphics. Before .NET I just avoided graphics unless I needd to because it was such a pain. I knew what I treasure it was when I noticed on the computer I bought 2 years ago, I have not had to install ImageMajick.

If you want to use spot-generated graphics in a website, put cool animation in your thickclient splashscreen, or print just about anything, any way, do yourself a favor. Visit Bob Powell's GDI Plus FAQ and learn GDI+ today!!!

If you don't think you'll ever use it... you're probably wrong >:-}

link|improve this answer
show 1 more comment
feedback

The CLR Hosting model and strong assembly naming. A couple of those important things that you generally don't think about but when you need them you thank god for their existence.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.