vote up 903 vote down star
1,322

This came to my mind after I learned the following from this question:

where T : struct

We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc.

Some of us even mastered the stuff like Generics, anonymous types, lambdas, linq, ...

But what are the most hidden features or tricks of C# that even C# fans, addicts, experts barely know?

Here are the revealed features so far:


Keywords

yield by Michael Stum
var by Michael Stum
using() statement by kokos
readonly by kokos
as by Mike Stone
as / is by Ed Swangren
as / is (improved) by Rocketpants
default by deathofrats
global:: by pzycoman
using() blocks by AlexCuse
volatile by Jakub Šturc
extern alias by Jakub Šturc

Attributes

DefaultValue by Michael Stum
ObsoleteAttribute by DannySmurf
DebuggerDisplayAttribute by Stu
DebuggerBrowsable and DebuggerStepThrough by bdukes
ThreadStaticAttribute by marxidad
FlagsAttribute by Martin Clarke
ConditionalAttribute by AndrewBurns

Syntax

?? operator by kokos
number flaggings by Nick Berardi
where T:new by Lars Mæhlum
implicit generics by Keith
one-parameter lambdas by Keith
auto properties by Keith
namespace aliases by Keith
verbatim string literals with @ by Patrick
enum values by lfoust
@variablenames by marxidad
event operators by marxidad
format string brackets by Portman
property accessor accessibility modifiers by xanadont
ternary operator (?:) by JasonS
checked and unchecked operators by Binoj Antony
implicit and explicit operators by Flory

Language Features

Nullable types by Brad Barker
Currying by Brian Leahy
anonymous types by Keith
__makeref __reftype __refvalue by Judah Himango
object initializers by lomaxx
format strings by David in Dakota
Extension Methods by marxidad
partial methods by Jon Erickson
preprocessor directives by John Asbeck
DEBUG pre-processor directive by Robert Durgin
operator overloading by SefBkn
type inferrence by chakrit
boolean operators taken to next level by Rob Gough
pass value-type variable as interface without boxing by Roman Boiko
programmatically determine declared variable type by Roman Boiko

Visual Studio Features

select block of text in editor by Himadri
snippets by DannySmurf

Framework

TransactionScope by KiwiBastard
DependantTransaction by KiwiBastard
Nullable<T> by IainMH
Mutex by Diago
System.IO.Path by ageektrapped
WeakReference by Juan Manuel

Methods and Properties

String.IsNullOrEmpty() method by KiwiBastard
List.ForEach() method by KiwiBastard
BeginInvoke(), EndInvoke() methods by Will Dean
Nullable<T>.HasValue and Nullable<T>.Value properties by Rismo
GetValueOrDefault method by John Sheehan

Tips & Tricks

nice method for event handlers by Andreas H.R. Nilsson
uppercase comparisons by John
access anonymous types without reflection by dp
a quick way to lazily instantiate collection properties by Will
JavaScript-like anonymous inline-functions by roosteronacid

Other

netmodules by kokos
LINQBridge by Duncan Smart
Parallel Extensions by Joel Coehoorn

flag
1  
--overloading the "true" operator.. --overloading the true and binary operators to simulate overloading the boolean operators (&& ||).. – therealhoff Sep 18 '08 at 23:16
3  
Without meaning to sound patronising, some of these could be tagged beginner such as ? for nullables and @ for strings. Having said that there are some nice ones I didn't know about it – Chris S Feb 1 at 17:01
2  
I have to say I don't think this is so much about hidden features but more so showing the lack of developers to fully read the documentation on the tools that they are using. This is an awesome post though since it is teaching me some new stuff. – CalvinR Feb 10 at 20:01
16  
Some of those links simply take you to the top of the question itself and not to the specific answers. You might want to think about fixing them. (175 answers (as of this writing) is a lot to search through.) – RobH May 8 at 18:23
1  
+1 for the effort taken to consolidate the topic replies in one page. – Jeeva S Dec 1 at 14:10
show 12 more comments

253 Answers

prev 1 2 3 4 5 9 next
vote up 6 vote down

My favourite is the

global::

keyword to escape namespace hell with some of our 3rd party code providers...

link|flag
3  
example -> msdn.microsoft.com/en-us/library/… – bob Jun 30 at 9:26
vote up 5 vote down

I didn't start to really appreciate the "using" blocks until recently. They make things so much more tidy :)

link|flag
vote up 53 vote down

This one is not "hidden" so much as it is misnamed.

A lot of attention is paid to the algorithms "map", "reduce", and "filter". What most people don't realize is that .NET 3.5 added all three of these algorithms, but it gave them very SQL-ish names, based on the fact that they're part of LINQ.

"map" => Select
Transforms data from one form into another

"reduce" => Aggregate
Aggregates values into a single result

"filter" => Where
Filters data based on a criteria

The ability to use LINQ to do inline work on collections that used to take iteration and conditionals can be incredibly valuable. It's worth learning how all the LINQ extension methods can help make your code much more compact and maintainable.

link|flag
show 2 more comments
vote up 65 vote down

Returning anonymous types from a method and accessing members without reflection.

// Useful? probably not.
private void foo()
{
    var user = AnonCast(GetUserTuple(), new { Name = default(string), Badges = default(int) });
    Console.WriteLine("Name: {0} Badges: {1}", user.Name, user.Badges);
}

object GetUserTuple()
{
    return new { Name = "dp", Badges = 5 };
}    

// Using the magic of Type Inference...
static T AnonCast<T>(object obj, T type)
{
   return (T) obj;
}
link|flag
2  
Very nice! I thought the only way to return multiple values was to define a new type. – blackwing Sep 23 '08 at 8:01
11  
That really doesn't get you anything. It is actually dangerous. What if GetUserTuple is modified to return multiple types? The cast will fail at run time. One of the great things about C#/.Net is the compile time checking. It would be much better to just create a new type. – Jason Jackson Sep 30 '08 at 1:10
1  
@Jason I did say it's probably not useful but it is surprising (and I thought hidden). – dp Sep 30 '08 at 14:41
12  
While cool, this seems like a rather poor design choice. You've basically defined the anonymous type in two places. At that point, just declare a real struct and use it directly. – Paul Alexander May 7 at 9:05
2  
@George: such a convention would be called a... struct? – Martinho Fernandes Nov 13 at 11:58
show 4 more comments
vote up 10 vote down

There's also the ThreadStaticAttribute to make a static field unique per thread, so you can have strongly typed thread-local storage.

Even if extension methods aren't that secret (LINQ is based on them), it may not be so obvious as to how useful and more readable they can be for utility helper methods:

//for adding multiple elements to a collection that doesn't have AddRange
//e.g., collection.Add(item1, item2, itemN);
static void Add<T>(this ICollection<T> coll, params T[] items)
 { foreach (var item in items) coll.Add(item);
 }

//like string.Format() but with custom string representation of arguments
//e.g., "{0} {1} {2}".Format<Custom>(c=>c.Name,"string",new object(),new Custom())
//      result: "string {System.Object} Custom1Name"
static string Format<T>(this string format, Func<T,object> select, params object[] args)
 { for(int i=0; i < args.Length; ++i)
    { var x = args[i] as T;
      if (x != null) args[i] = select(x);
    }
   return string.Format(format, args);
 }
link|flag
show 2 more comments
vote up 0 vote down

I think if you have to use nullable types, it's better to use Nullable<.T> rather than the question mark notation. It makes it eye-achingly obvious that magic is occurring. Not sure why anyone would ever want to use Nullable<.bool> though.

In a VB.Net Web-Service where the parameter might not be passed through (because the partners request wasn't consistent or reliable), but had to pass validation against the proposed type (Boolean for "if is search request"). Chalk it up to "another demand by management"...

...and yes, I know some people think it's not the right way to do these things, but IsSearchRequest As Nullable(Of Boolean) saved me losing my mind that night!

link|flag
vote up 63 vote down

Using @ for variable names that are keywords.

var @object = new object();
var @string = "";
var @if = IpsoFacto();
link|flag
14  
Why would you want to use a keyword as a variable name? Seems to me that this would make code less readable and obfuscated. – Jon Sep 13 '08 at 4:18
6  
Well, the reason that it's there is that CLI requires it for interoperability with other languages that might use C# keywords as member names – Mark Cidade Sep 18 '08 at 22:04
18  
If you ever wanted to use the asp.net MVC HTML helpers and define a HTML class you will be happy to know that you can use @class so it won't be recognised as the class keyword – boris callens Sep 23 '08 at 7:18
3  
This is not a feature, @ is just allowed symbol for naming like _ and many others (name '@this' will not be equal to name 'this') – zihotki Feb 21 at 7:34
20  
@zihotki: Wrong. var a = 5; Console.WriteLine(@a); Prints 5 – SLaks Jun 4 at 17:40
show 9 more comments
vote up 28 vote down

Events are really delegates under the hood and any delegate object can have multiple functions attached to it and detatched from it using the += and -= operators, respectively.

Events can also be controlled with the add/remove, similar to get/set except they're invoked when += and -= are used:

public event EventHandler SelectiveEvent(object sender, EventArgs args) 
  { add 
     { if (value.Target == null) throw new Exception("No static handlers!");
       _SelectiveEvent += value;
     }
    remove
     { _SelectiveEvent -= value;
     }
  } EventHandler _SelectiveEvent;
link|flag
show 1 more comment
vote up 15 vote down

It's not actually a C# hidden feature, but I recently discovered the WeakReference class and was blown away by it (although this may be biased by the fact that it helped me found a solution to a particular problem of mine...)

link|flag
vote up 0 vote down

I must admit that i'm not sure wether this performs better or worse than the normal ASP.NET repeater onItemDatabound cast code, but anyway here's my 5 cent.

MyObject obj = e.Item.DataItem as MyObject;
if(obj != null)
{
  //Do work
}
link|flag
vote up 44 vote down

If you're trying to use brackets inside a String.Format expression...

int foo = 3;
string bar = "blind mice";
String.Format("{{i am in brackets!}} {0} {1}", foo, bar);
//outputs "{i am in brackets!} 3 blind mice"
link|flag
vote up 16 vote down

Near all the cool ones have been mentioned. Not sure if this one's well known or not

C# property/field constructor initialization:

var foo = new Rectangle() { Fill = new SolidColorBrush(c), 
                            Width = 20, 
                            Height = 20 };

This creates the rectangle, and sets the listed properties.

I've noticed something funny - you can have a comma at the end of the properties list, without it being a syntax error. So this is also valid:

var foo = new Rectangle() { Fill = new SolidColorBrush(c), 
                            Width = 20, 
                            Height = 20, };
link|flag
1  
The comma at the end makes fiddling with the values much easier :) – OregonGhost Mar 30 at 11:07
show 3 more comments
vote up 19 vote down

Not hidden, but I think that a lot of developers are not using the HasValue and Value properties on the nullable types.

        int? x = null;
        int y;
        if (x.HasValue)
            y = x.Value;
link|flag
1  
How would one employ a nullable type without using HasValue? – Cheeso May 15 at 14:11
2  
Like this: int? x; if(x != null) – Rismo May 19 at 22:14
5  
No, people like to write: y = x ?? defaultvalue. – Dave Van den Eynde Jun 2 at 7:08
3  
Just to be clear, (x != null) and (x.HasValue) result in identical IL. – Snarfblam Oct 17 at 0:03
vote up 17 vote down

@lomaxx I also learned the other day (the same time I learned your tip) is that you can now have disparate access levels on the same property:

public string Name { get; private set;}

That way only the class itself can set the Name property.

public Name(string name) { Name = name; }
link|flag
1  
protected set; is really useful for base classes. – Arnis L. Jun 6 at 20:04
show 4 more comments
vote up 221 vote down

From Rick Strahl:

You can chain the ?? operator so that you can do a bunch of null comparisons.

string result = value1 ?? value2 ?? value3 ?? String.Empty;
link|flag
4  
cool !! but don't you think you might mess evrything up ? – Yassir May 8 at 17:27
3  
Nice! Definitely cleaner than 3 if statements! – SkippyFire Jun 5 at 18:12
6  
?? is insanely useful for making your code readable. Unfortunately because C# is strongly typed, it insists that all of the operands be of the same type. This can make it's use in operator chaining annoying. Otherwise, a great operator. – Adam Luter Sep 9 at 12:07
show 3 more comments
vote up 18 vote down

Partial Methods

Charlie Calvert explains partial methods on his blog

Scott Cate has a nice partial method demo here

  1. Points of extensibility in Code Generated class (LINQ to SQL, EF)
  2. Does not get compiled into the dll if it is not implemented (check it out with .NET Reflector)
link|flag
show 3 more comments
vote up 45 vote down

Maybe not an advanced technique, but one I see all the time that drives me crazy:

if (x == 1)
{
   x = 2;
}
else
{
   x = 3;
}

can be condensed to:

x = (x==1) ? 2 : 3;
link|flag
3  
I guess because they're not the same things, being an operator not a statement. I prefer the first approach myself. It's more consistent and easily expandable. Operators can't contain statements, so the minute you have to expand the body, you'll have to convert that ternary operator to an if statement – kervin Apr 18 at 16:34
4  
@Guillaume: To account for all values of x: x = 2 + System.Math.Min(1,System.Math.Abs(x-1)); – mbeckish Jun 6 at 20:17
9  
It's actually called the "conditional operator" - it is a ternary operator because it takes three arguments. en.wikipedia.org/wiki/Conditional_operator – Blorgbeard Jun 30 at 9:24
show 6 more comments
vote up 4 vote down

Preprocessor Directives can be nifty if you want different behavior between Debug and Release modes.

http://msdn.microsoft.com/en-us/library/ed8yd1ha.aspx

link|flag
show 1 more comment
vote up 6 vote down

I see a lot of people replicate the functionality of Nullable<T>.GetValueOrDefault(T).

link|flag
show 2 more comments
vote up 4 vote down

Has anybody used "props"?

You type "prop" and then press [TAB] twice, it generates useful code for your properties and can speed your typing.

I know this works in VS 2005 (I use it) but I don´t know in previous versions.

link|flag
1  
ctor can be used to create a constructor – Bhaskar Jul 1 at 8:49
show 4 more comments
vote up 6 vote down

How about the about the FlagsAttribute on an enumeration. It allows you to perform bitwise operations... took me forever to find out how to do bitwise operations in .NET nicely.

link|flag
2  
I think you can do bitwise operations on any enum, flags only affect the ToString() method – Olmo Nov 24 '08 at 22:22
show 1 more comment
vote up 4 vote down

I'm pretty sure everyone is familiar with operator overloading, but maybe some aren't.

class myClass
{
    private string myClassValue = "";

    public myClass(string myString)
    {
        myClassValue = myString;
    }

    public override string ToString()
    {
        return myClassValue;
    }

    public static myClass operator <<(myClass mc, int shiftLen)
    {
        string newString = "";
        for (int i = shiftLen; i < mc.myClassValue.Length; i++)
            newString += mc.myClassValue[i].ToString();
        mc.myClassValue = newString.ToString();
        return mc;
    }

    public static myClass operator >>(myClass mc, int shiftLen)
    {
        char[] newString = new char[shiftLen + mc.myClassValue.Length];

        for (int i = shiftLen; i < mc.myClassValue.Length; i++)
            newString[i] += mc.myClassValue[i - shiftLen];

        mc.myClassValue = new string(newString);
        return mc;
    }

    public static myClass operator +(myClass mc, string args)
    {
        if (args.Trim().Length > 1)
            mc.myClassValue += args;
        return mc;
    }

    public static myClass operator -(myClass mc, string args)
    {
        if (args.Trim().Length > 1)
        {
            Regex rgx = new Regex(args);
            mc.myClassValue = rgx.Replace(mc.myClassValue, "");
        }
        return mc;
    }
}

I think it's pretty cool to be able to shift a string left and right using << and >> or to remove a set of strings that follow a regular expression pattern using -=

myClass tmpClass = new myClass("  HelloWorld123");
tmpClass -= @"World";
tmpClass <<= 2;
Console.WriteLine(tmpClass);
link|flag
1  
As anyone who's worked with a C++ library that has lots of overloaded operators will tell you, overloaded operators are evil, evil, evil. Just write a method to do it. – endian Oct 23 '08 at 8:13
2  
Great for math classes. Makes, for example, multiplying vector and matrices very to read, just aVector = anotherVector* aMatrix; instead of aVector=anotherVector.Multiply(aMatrix); – Sorskoot Jan 21 at 9:24
2  
Great for math classes, as @Sorskoot said, but that's about it. For pretty much any other class they're just really bad method names. – Danut Enachioiu Sep 3 at 4:56
1  
There are certain limited cases, in addition to mathematical classes, where certain operators make sense. I see nothing wrong with, say, myCollection += anItem; or if(someObject == anotherObject) {}. – Snarfblam Oct 17 at 18:07
show 1 more comment
vote up 1 vote down

One interesting thing I've learned is that different parts of the framework and C# language were written at different times, hence inconsistencies. For example, the framework itself violates many FxCop rules because the rules weren't all in place when the framework was written.

Also, the using statement was intended for delinieating "scopes" and not specifically for disposing resources. It was written after the lock statement. Eric Gunnerson once mentioned something along the lines of that if the using statement came first, they might have not needed to write the lock statement (though who knows, maybe they would have anyways), because the using statement might have been sufficient.

link|flag
vote up 3 vote down

@lainMH,

Nullable booleans are useful when retrieving values from a database that are nullable and when putting values back in. Sometimes you want to know the field has not been set.

link|flag
vote up -15 vote down

It really seems like this site is developing nothing like what the faq is talking about:

What kind of questions can I ask here?

Programming questions, of course! As long as your question is:

* detailed and specific
* written clearly and simply
* of interest to at least one other programmer somewhere

If you ask a question that has been asked before, that is OK and deliberately allowed. No question is too trivial or too "newbie". What kind of questions should I not ask here?

Avoid asking questions that are subjective, argumentative, or require extended discussion. This is a place for questions that can be answered!

link|flag
1  
I think meta-questions like this one are allowed. It's about programming, although not about a specific problem. But It brings together the community. Also: I've learned a few great tips from this question and it's answers. – roosteronacid Sep 30 '08 at 10:21
1  
I happen to love this particular question. because it was a general, not specific, question, I learned a lot. And isn't that what matters, after all? – Qwertie Nov 6 '08 at 20:40
show 1 more comment
vote up 2 vote down

In reading the book on development of the .NET framework. A good piece of advice is not to use bool to turn stuff on or off, but rather use ENums.

With ENums you give yourself some expandability without having to rewrite any code to add a new feature to a function.

link|flag
vote up 13 vote down

The C# ?? null coalescing operator -

Not really hidden, but rarely used. Probably because a lot of developers run a mile when they see the conditional ? operator, so they runt two when they see this one. Used:

string mystring = foo ?? "foo was null"

rather than

string mystring;
if (foo==null)
    mystring = "foo was null";
else
    mystring = foo;
link|flag
2  
If the condition is a function that computes a result, with the ternary operator you would end up calling the function twice (in the case it evaluates to true). Whereas using ?? will only call it once. – DSO Mar 27 at 22:42
show 1 more comment
vote up 207 vote down

Read all the answers but I think lambdas and type inferrence is underrated.

Havn't seen anyone mentioned that Lambdas can have multiple statement and they double as a compatible delegate object automatically (just make sure the signature match) as in:

Console.CancelKeyPress +=
    (sender, e) => {
        Console.WriteLine("CTRL+C detected!\n");
        e.Cancel = true;
    };

Note that I don't have a new CancellationEventHandler nor do I have to specify types of sender and e, they're inferrable from the event. Which is why this is less cumbersome to writing the whole delegate (blah blah) which also requires you to specify types of parameters.

Lambdas doesn't need to return anything and type inference is extremely powerful in context like this.

and BTW, you can always return Lambdas that make Lambdas in the functional programming sense. For example, here's a lambda that make a lambda that handles a Button.Click event:

Func<int, int, EventHandler> makeHandler =
    (dx, dy) => (sender, e) => {
        var btn = (sender as Button);
        btn.Top += dy;
        btn.Left += dx;
    };

btnUp.Click += makeHandler(0, -1);
btnDown.Click += makeHandler(0, 1);
btnLeft.Click += makeHandler(-1, 0);
btnRight.Click += makeHandler(1, 0);

Note the chaining: (dx, dy) => (sender, e) =>

Now that's why I'm happy to have taken the functional programming class :-)

Other than the pointers in C, I think its the other fundamental thing you should learn :-)

link|flag
1  
That currying stuff is totally awesome. Lambdas are a great addition to C#. – Botz3000 May 19 at 12:16
1  
That's awesome! Just the other day I was trying to figure out how to do that. – MighMoS Jul 7 at 23:37
4  
Functional paradigm FTW! – peSHIr Oct 27 at 7:12
show 4 more comments
vote up 2 vote down

Reflection Emit and Expression trees come to mind...

Don't miss Jeffrey Richter's CLR via C# and Jon Skeet's alt text

See here for some resources:

http://www.codeproject.com/KB/trace/releasemodebreakpoint.aspx

http://www.codeproject.com/KB/dotnet/Creating_Dynamic_Types.aspx

http://www.codeproject.com/KB/cs/lambdaexpressions.aspx

link|flag
vote up 13 vote down

The #if DEBUG pre-processor directive. It is Useful for testing and debugging (though I usually prefer to go the unit testing route).

string customerName = null;
#if DEBUG
  customerName = "Bob"
#endif

It will only execute code block if Visual Studio is set to compile in 'Debug' mode. Otherwise the code block will be ignored by the compiler (and grayed out in Visual Studio).

link|flag
3  
Note that you can define any symbol and then use conditional compilation on that symbol. DEBUG just happens to be automatically defined for you by default. – xanadont May 5 at 21:41
show 1 more comment
prev 1 2 3 4 5 9 next

Your Answer

Get an OpenID
or

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