vote up 22 vote down star
20

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?

flag

16  
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 at 17:17
11  
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 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 at 17:46
1  
shouldn't this be a community wiki?? – Stan R. Jul 18 at 0:24
3  
No...why would it be? – womp Jul 18 at 3:31
show 1 more comment

26 Answers

vote up 51 vote down check

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|flag
3  
Definitely under-valued. – 280Z28 Jul 17 at 17:29
24  
And if you don't what what he's talking about, try learning PHP. – spoulson Jul 17 at 18:13
Not quote the answer I was expecting but I have to agree – Jan Bannister Jul 21 at 17:27
1  
@spoulson I would upvote that more if I could! – corymathews Sep 29 at 21:15
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 at 18:11
vote up 8 vote down

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

link|flag
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 at 17:06
4  
MVC is just out-of-band right now. It'll be fully integrated into .NET 4.0 – Bob King Jul 17 at 17:17
vote up 12 vote down

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|flag
8  
"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 at 17:01
6  
'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 at 17:04
unsafe can break running app completely, where non-unsafed code can't without a bug in the JIT or libs. I find unsafe quite well chosen. – Dykam Jul 17 at 17:05
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 at 17:19
1  
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 at 19:20
show 1 more comment
vote up 8 vote down

The all powerful Windows WorkFlow Foundation.

link|flag
4  
Still don't know what this is to be completely honest. :-/ What is it used for? :x – Zack Jul 17 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 at 20:40
vote up 17 vote down

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|flag
7  
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 at 17:03
I have yet to use Reflection in production code myself, but I answered as such because a vast amount of .NET developers I know don't even know how to use Reflection, and many don't even know what it is. – codemonkey4hire Jul 17 at 17:30
3  
And, at the very least, Reflection is nice for displaying current assembly version number on a form/website. – codemonkey4hire Jul 17 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 at 19:17
The ONLY time I EVER user reflection is dynamic plugin loading. Every other use is abuse in my eyes. – John Gietzen Oct 9 at 18:18
show 1 more comment
vote up 16 vote down

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|flag
especially compared to trying to do the equivalent in Java... yeck – jle Jul 17 at 18:25
vote up 22 vote down

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|flag
1  
The Compile option is especially nice when use right. – Dykam Jul 17 at 17:06
Totally agree and I'd +2 this if I could! – Zack Jul 17 at 18:33
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 at 19:45
14  
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 at 21:21
Very true. I especially like the facility that lets you match nested brackets (and other constructs) - this actually makes .NET regexps powerful enough to parse many programming languages. Is there any other regex library that offers this, even? – Pavel Minaev Sep 29 at 20:31
vote up 18 vote down

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|flag
vote up 26 vote down

Linq is truly amazing.

link|flag
1  
Yeah, the whole idea, and hoe well it integrated with C#. Saves so much lines of code. – Dykam Jul 17 at 17:09
13  
yes, but the question is "under-valued" and I have yet to met a .NET developer who dismisses Linq as not worth it. – codemonkey4hire Jul 17 at 17:27
5  
I think it's often confused with Linq-to-SQL and dismissed. – mgroves Jul 17 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 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 at 18:37
vote up 4 vote down

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|flag
vote up 4 vote down

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|flag
vote up 9 vote down

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|flag
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 at 18:39
2  
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 at 18:53
vote up 2 vote down
  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|flag
+1 for the Activator. – Kenny Jul 17 at 19:33
vote up 15 vote down

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

link|flag
1  
Yeah, CLI support of generics is really powerfull. – Dykam Jul 17 at 18:41
Some of the things you can do with generics are really neat. I've got a function that looks for a parent control of a specific T type, a function that returns a list of all of the type T controls in a page, and a function that unboxes an object into a T or throws an exception. All very handy. – quillbreaker Jul 17 at 19:23
Yes generics save lot of work. Love them – George Statis Sep 30 at 3:55
vote up 14 vote down

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|flag
wow. I'm going to learn some more about XML now. :) – Zack Jul 17 at 18:37
Downvoter, please explain. – John Saunders Jul 19 at 13:47
What about System.Xml.Linq? Isn't that the new bling? – DanThMan Jul 21 at 6:12
It's a nice API for constructing and querying XML. It doesn't have the full generality of the rest of the XML API. But then, you don't always need the full generatlity. – John Saunders Jul 21 at 8:28
I would add one exception to the System.Xml API, and that's the XSLCompiled transforms, and the huge amounts of memory it can eat in ASP.NET environments from my experience. Fortunately from what I've read Microsoft are not writing a XSLT 2.0 processor but pushing towards Linq to XML – Chris S Aug 4 at 12:04
show 1 more comment
vote up 2 vote down

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

link|flag
vote up 4 vote down

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

All kinds of gotchas with unmanaged code.

link|flag
vote up 3 vote down

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|flag
Is he getting anywhere? – SLaks Aug 31 at 1:09
not yet, he's actually in the process of moving his flag back to the US from Europe atm -- once he's settled in I know this will become a topic of conversation... I'll post an update if any relevant info develops – Hardryv Aug 31 at 16:01
vote up 1 vote down

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

  • You can use the same program in any sopported architecture (i.e. X86, x64)
  • You can run it in a lot of os with mono. More operatig 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|flag
vote up 9 vote down

Mono on Mac OS X, Linux, ...

link|flag
vote up 4 vote down

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|flag
vote up 2 vote down

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

link|flag
This is not part of the .Net Framework, it is just a feature of some languages. – Brian Oct 9 at 18:11
vote up 1 vote down

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|flag
vote up 4 vote down

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|flag
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 at 11:38
vote up 3 vote down

.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|flag
I had to give this comment a bump, because just 2 days ago this exact class saved me having to reformat a web server. We were using an old VB6 COM object that somebody hacked together years ago to do our XSLT stuff.. it started to misbehave and (as it had done before) caused irreprable damage to one of the web servers (I don't know how, but better developers here haven't been able to figure it out).. instead of going with the old hack, I just used .NET 2.0's built in XSLT functionality and achieved a very successful result. The bosses were delighted! – Dave Oct 13 at 12:44
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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