vote up 645 vote down
star
894

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

Visual Studio Features

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

Other

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

flag
5 
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
add / show 12 more comments

203 Answers

1 2 3 4 5 7 next
vote up 163 vote down

This isn't C# per se, but I haven't seen anyone who really uses System.IO.Path.Combine() to the extent that they should. In fact, the whole Path class is really useful, but no one uses it!

I'm willing to bet that every production app has the following code, even though it shouldn't:

string path = dir + "\\" + fileName;
link|flag
10 
Everyone should be using Path.Combine()... it's crazy not to. – Jon Tackabury Oct 21 at 18:28
5 
Path.Combine is also essential for cross-platform coding as it uses whatever path separator the current OS uses. – Gary Willoughby Nov 17 at 9:57
3 
Path.Combine( ) is really bad, it doesn't combine paths! Do MessageBox.Show(Path.Combine(@"c:\temp", @"\assembly")); and you will see why. See also dotnet.org.za/hiltong/archive/… – tuinstoel Jan 1 at 16:34
11 
@tuinstoel it works for me so far :-) Prefixing a path with a slash should have the same effect as when you execute cd \ in command prompt, it should take you back to the root no matter where you are.... so Path.Combine is working as it should... – chakrit Mar 22 at 10:35
2 
Now if only it would take in a param array of items instead of just two.. – Andy Jun 8 at 15:27
add / show 16 more comments
vote up 145 vote down

Avoid checking for null event handlers

Adding an empty delegate to events at declaration, suppressing the need to always check the event for null before calling it is awesome. Example:

public delegate void MyClickHandler(object sender, string myValue);
public event MyClickHandler Click = delegate {}; // add empty delegate!

Let you do this

public void DoSomething()
{
    Click(this, "foo");
}

Instead of this

public void DoSomething()
{
    // Unnecessary!
    MyClickHandler click = Click;
    if (click != null) // Unnecessary! 
    {
        click(this, "foo");
    }
}

Please also see this related discussion and this blog post by Eric Lippert on this topic (and possible downsides).

link|flag
10 
I believe a problem will appear if you rely on this technique and then you have to serialize the class. You will eliminate the event, and then on deserialization you will get a NullRefference.... .So one can just stick to the "old way" of doing things. It's safer. – sirrocco Oct 13 at 9:58
3 
you can still set your event handler to null, so you can still get a null reference, and you still have a race condition. – Robert Paulson Oct 19 at 23:00
14 
A quick profile test shows that dummy-subscribed event handler without null test takes roughly 2x the time of unsubscribed event handler with null test. Multicast event handler without null test takes about 3.5x the time of singlecast event handler with null test. – P Daddy Nov 17 at 6:53
13 
This avoids the need for a null check by just always having a self-subscriber. Even as an empty event this carries an overhead that you don't want. If there are no subscribers you don't want to fire the event at all, not always fire an empty dummy event first. I would consider this bad code. – Keith Dec 4 at 14:49
6 
This is a terrible suggestion, for the reasons in the above comments. If you must make your code look "clean", use an extension method to check for null then call the event. Someone with modify privileges should definitely add the cons to this answer. – Greg Mar 31 at 4:29
add / show 16 more comments
vote up 136 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 don'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
add / show 5 more comments
vote up 134 vote down

From CLR via C#:

When normalizing strings, it is highly recommended that you use ToUpperInvariant instead of ToLowerInvariant because Microsoft has optimized the code for performing uppercase comparisons.

I remember one time my coworker always changed strings to uppercase before comparing. I've always wondered why he does that because I feel it's more "natural" to convert to lowercase first. After reading the book now I know why.

link|flag
13 
When you "convert a string to upper case" you create a second temporary string object. I thought that this kind of comparison was not preferred, that the best way was: String.Equals(stringA, stringB, StringComparison.CurrentCultureIgnoreCase) whcih does not create this throwaway string at all. – Anthony Sep 23 at 14:44
3 
What kind of optimization can you perform on comparing upper case strings that can't be done on lower case strings? I don't understand why one would be more optimal than the other. – Parappa Oct 24 at 17:38
4 
Converting to uppercase rather than lowercase can also prevent incorrect behavior in certain cultures. For example, in Turkish, two lowercase i's map to the same uppercase I. Google "turkish i" for more details. – neilwhitaker1 Dec 17 at 17:17
3 
I tried benchmarking ToUpperInvariant vs ToLowerInvariant. I cannot find any difference in their performance under .NET 2.0 or 3.5. Certainly not anything that warrant "highly recommending" using one over the other. – Rasmus Faber Jan 21 at 21:41
4 
ToUpperInvariant is preferred because it makes all characters round-trip. See msdn.microsoft.com/en-us/library/…. For comparisons, write`"a".Equals("A", StringComparison.OrdinalIgnoreCase)` – SLaks Jun 4 at 19:35
add / show 5 more comments
vote up 133 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
1 
Nice! Definitely cleaner than 3 if statements! – SkippyFire Jun 5 at 18:12
add / show 1 more comment
vote up 117 vote down

I didn't know the "as" keyword for quite a while.

MyClass myObject = (MyClass) obj;

vs

MyClass myObject = obj as MyClass;

The second will return null if obj isn't a MyClass, rather than throw a class cast exception.

link|flag
1 
Don't over-do it though. Lots of people seem to use as because the prefer the syntax even though they want the semantics of a (ToType)x. – Scott Langham Sep 19 at 18:07
2 
I don't believe it offers better performance. Have you profiled it? (Obviously though it does when the cast fails... but when you use (MyClass) cast, failures are exceptional.. and extremely rare (if they happen at all), so it makes no difference. – Scott Langham Jan 21 at 13:01
3 
Right along the same lines of the "as" keyword... the "is" keyword is just as useful. – dkpatt May 7 at 19:09
add / show 5 more comments
vote up 109 vote down

All the above, plus

1) implicit generics (why only on methods and not on classes?)

void GenericMethod<T>( T input ) { ... }

//infer type, so
GenericMethod<int>(23); //you don't need the <>
GenericMethod(23);      //is enough

2) simple lambdas with one parameter:

x => x.ToString() //simplify so many calls

3) anon types and initialisers:

//duck-typed: works with any .Add method
var colours = new Dictionary<string, string> {
    { "red", "#ff0000" },
    { "green", "#00ff00" },
    { "blue", "#0000ff" }
};

int[] arrayOfInt = new { 1, 2, 3, 4, 5 };


Another one:

4) Auto properties can have different scopes:

Public int MyId { get; private set; }


Thanks @pzycoman for reminding me:

5) Namespace aliases (not that you're likely to need this particular distinction):

using web = System.Web.UI.WebControls;
using win = System.Windows.Forms;

web::Control aWebControl = new web::Control();
win::Control aFormControl = new win::Control();
link|flag
1 
i think you've been able to initialize arrays with int[] nums = {1,2,3}; since 1.0 :) doesn't even need the "new" keyword – Lucas Oct 7 at 23:26
1 
also lambda without parameters ()=> DoSomething(); – pablito Jan 12 at 8:38
add / show 13 more comments
vote up 93 vote down

My favorite trick is using the null coalesce operator and parens to automagically instantiate collections for me.

private IList<Foo> _foo;

public IList<Foo> ListOfFoo 
    { get { return _foo ?? (_foo = new List<Foo>()); } }
link|flag
1 
Oh this is cool! I use that idiom all the time in Ruby (everyone does), but had not yet realized that it now maps directly to c#!! – Charlie Flowers Mar 23 at 3:44
2 
Don't you find it hard to read? – Riri May 19 at 18:40
5 
Its slightly hard to read for the noo... er, inexperienced. But its compact and contains a couple patterns and language features that the programmer should know and understand. So, while it is hard at first, it provides the benefit of being a reason to learn. – Will May 20 at 13:23
add / show 4 more comments
vote up 88 vote down

"yield" would come to my mind. Some of the Attributes like [DefaultValue()] are also among my favorites.

The "var" keyword is a bit more known, but that you can use it in .net 2.0 Applications as well (as long as you use the .net 3.5 Compiler and set it to output 2.0 code) does not seem to be known very well.

Edit: Thanks kokos for pointing out the ?? operator, that's indeed really useful. Since it's a bit hard to google for it (as ?? is just ignored), here is the Documentation Page for that operator: http://msdn.microsoft.com/en-us/library/ms173224.aspx

link|flag
2 
The default value's documentation says it is not really setting the value of the property. It's only a helper for visualisers and code generators. – boris callens Nov 8 at 1:18
add comment
vote up 80 vote down

Two things I like are Automatic properties so you can collapse your code down even further:

private string _name;
public string Name
{
    get
    {
        return _name;
    }
    set
    {
        _name = value;
    }
}

becomes

public string Name { get; set;}

Also object initializers:

Employee emp = new Employee();
emp.Name = "John Smith";
emp.StartDate = DateTime.Now();

becomes

Employee emp = new Employee {Name="John Smith", StartDate=DateTime.Now()}
link|flag
2 
Should it be noted that Automatic Properties are a C# 3.0 only feature? – Jared Updike Sep 18 at 22:53
3 
Automatic Properties were introduced with the 3.0 compiler. But since the compiler can be set to output 2.0 code, they work just fine. Just don't try to compile 2.0 code with automatic properties in an older compiler! – Josh Mar 10 at 14:59
add / show 3 more comments
vote up 69 vote down

I tend to find that most C# developers don't know about 'nullable' types. Basically, primitives that can have a null value.

double? num1 = null; 
double num2 = num1 ?? -100;

Set a nullable double, num1, to null, then set a regular double, num2, to num1 or -100 if num1 was null.

http://msdn.microsoft.com/en-us/library/1t3y8s4s(VS.80).aspx

link|flag
add / show 8 more comments
vote up 65 vote down

The @ tells the compiler to ignore any escape characters in a string.

just wanted to clarify this one... it doesn't tell it to ignore the escape characters, it actually tells the compiler to interpret the string as a literal.

if you have

string s = @"cat
             dog
             fish"

it will actually print out as (note that it even includes the whitespace used for indentation)

cat
             dog
             fish
link|flag
2 
It would be clearer if the output showed the spaces that would be printed out as well. Right now it seems as if the new lines characters are printed but spaces are ignored. – aleemb Apr 28 at 11:15
add / show 3 more comments
vote up 64 vote down

Here's a useful one for regular expressions and file paths:

"c:\\program files\\oldway"
@"c:\program file\newway"

The @ tells the compiler to ignore any escape characters in a string.

link|flag
6 
Also, a @ constant accepts newlines inside. Perfect when assigning a multiline script to a string. – Tor Haugen Nov 19 at 16:17
add / show 2 more comments
vote up 62 vote down

aliased generics:

using ASimpleName = Dictionary<string, Dictionary<string, List<string>>>;

allows you to use ASimpleName, instead of Dictionary<string, Dictionary<string, List<string>>>

use it when you would use the same generic big long complex thing in a lot of places

link|flag
1 
Haha that's kind of cool, but I'm very glad that C# 3 has implemented the "var" keyword which has got rid of some of the ugliness with generic instantiation like: Dictionary<string, Dictionary<string, List<string>>> myDic = new Dictionary<string, Dictionary<string, List<string>>>(); – cbp Nov 26 at 6:36
add / show 2 more comments
vote up 55 vote down

I think one of the most under-appreciated and lesser-known features of C# (3.5) are Expression Trees, especially when combined with Generics and Lambdas. This is an approach to API creation that newer libraries like NInject and Moq are using.

For example, let's say that I want to register a method with an API and that API needs to get the method name

Given this class:

public class MyClass
{
     public void SomeMethod() { /* Do Something */ }
}

Before, it was very common to see developers do this with strings and types (or something else largely string-based):

RegisterMethod(typeof(MyClass), "SomeMethod");

Well, that sucks because of the lack of strong-typing. What if I rename "SomeMethod"? Now, in 3.5 however, I can do this in a strongly-typed fashion:

RegisterMethod<MyClass>(cl => cl.SomeMethod());

In which the RegisterMethod class uses Expression> like this:

void RegisterMethod<T>(Expression<Action<T>> action) where T : class
{
    var expression = (action.Body as MethodCallExpression);

    if (expression != null)
    {
        // TODO: Register method
        Console.WriteLine(expression.Method.Name);
    }
}

This is one big reason that I'm in love with Lambdas and Expression Trees right now.

link|flag
add / show 1 more comment
vote up 52 vote down

Unions (the C++ shared memory kind) in pure, safe C#

Without resorting to unsafe mode and pointers, you can have class members share memory space in a class/struct. Given the following class:

[StructLayout(LayoutKind.Explicit)]
public class A
{
    [FieldOffset(0)]
    public byte One;

    [FieldOffset(1)]
    public byte Two;

    [FieldOffset(2)]
    public byte Three;

    [FieldOffset(3)]
    public byte Four;

    [FieldOffset(0)]
    public int Int32;
}

You can modify the values of the byte fields by manipulating the Int32 field and vice-versa. For example, this program:

    static void Main(string[] args)
    {
        A a = new A { Int32 = int.MaxValue };

        Console.WriteLine(a.Int32);
        Console.WriteLine("{0:X} {1:X} {2:X} {3:X}", a.One, a.Two, a.Three, a.Four);

        a.Four = 0;
        a.Three = 0;
        Console.WriteLine(a.Int32);
    }

Outputs this:

2147483647
FF FF FF 7F
65535

just add using System.Runtime.InteropServices;

link|flag
1 
+1 awesome! This would enables a whole lots of number manipulation tricks from C++ days :-) – chakrit Dec 30 at 18:58
8 
Cool, but I totally would murder someone who I saw doing this. – George Mauer Apr 9 at 19:12
add / show 1 more comment
vote up 49 vote down

Attributes in general, but most of all DebuggerDisplay. Saves you years.

link|flag
add / show 3 more comments
vote up 47 vote down

The 'default' keyword in generic types:

T t = default(T);

results in a 'null' if T is a reference type, and 0 if it is an int, false if it is a boolean, etcetera.

link|flag
1 
Cool! I have to remember this! – Dave Van den Eynde May 28 at 14:56
add comment
vote up 45 vote down

Using @ for variable names that are keywords.

var @object = new object();
var @string = "";
var @if = IpsoFacto();
link|flag
6 
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 at 4:18
7 
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 at 7:18
add / show 9 more comments
vote up 45 vote down

Not sure why anyone would ever want to use Nullable<bool> though. :-)

True, False, FileNotFound?

link|flag
9 
if expect a user to answer a yes no question then null would be appropriate if the question has not been answered – Omar Kooheji Oct 24 at 12:38
add / show 8 more comments
vote up 43 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 at 8:01
4 
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 at 1:10
1 
@Jason I did say it's probably not useful but it is surprising (and I thought hidden). – dp Sep 30 at 14:41
5 
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
add / show 1 more comment
vote up 41 vote down

@Ed, I'm a bit reticent about posting this as it's little more than nitpicking. However, I would point out that in your code sample:

MyClass c;
  if (obj is MyClass)
    c = obj as MyClass

If you're going to use 'is', why follow it up with a safe cast using 'as'? If you've ascertained that obj is indeed MyClass, a bog-standard cast:

c = (MyClass)obj

...is never going to fail.

Similarly, you could just say:

MyClass c = obj as MyClass;
if(c != null)
{
   ...
}

I don't know enough about .NET's innards to be sure, but my instincts tell me that this would cut a maximum of two type casts operations down to a maximum of one. It's hardly likely to break the processing bank either way; personally, I think the latter form looks cleaner too.

link|flag
3 
If the cast is to the exact type (cast to "A" when object is "A", not derived from it), the straight cast is ~3x FASTER than "as". When casting a derived type (cast to "A" when object is "B", which derives from "A"), the straight cast is ~0.1x slower than "as". "is", then "as" is just silly. – P Daddy Nov 17 at 7:15
add / show 6 more comments
vote up 38 vote down

Here are some interesting hidden C# features:

__makeref

__reftype

__refvalue

These are undocumented C# keywords (even Visual Studio recognizes them!) that were added to for a more efficient boxing/unboxing prior to generics. They work in coordination with the System.TypedReference struct.

There's also __arglist, which is used for variable length parameter lists.

One thing folks don't know much about is System.WeakReference -- a very useful class that keeps track of an object but still allows the garbage collector to collect it.

The most useful "hidden" feature would be the yield return keyword. It's not really hidden, but a lot of folks don't know about it. LINQ is built atop this; it allows for delay-executed queries by generating a state machine under the hood. Raymond Chen recently posted about the internal, gritty details.

link|flag
add / show 1 more comment
vote up 36 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
add / show 2 more comments
vote up 33 vote down
Environment.NewLine

for system independant newlines.

link|flag
2 
Its worth pointing out that this is specific to the application's host platform - so if you are creating data intended for another system, you should use \n or \r\n appropriately. – Adrian Jun 2 at 12:04
add / show 1 more comment
vote up 32 vote down

If you want to exit your program without calling any finally blocks or finalizers use

Environment.FailFast()
link|flag
add / show 2 more comments
vote up 30 vote down
  1. ?? - great operator
  2. using - great keyword that can be used for more than just calling Dispose
  3. readonly - should be used more
  4. netmodules - too bad there's no support in Visual Studio
link|flag
add / show 8 more comments
vote up 29 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
2 
@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
add / show 6 more comments
vote up 28 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
add comment
vote up 27 vote down
  • TransactionScope and DependantTransaction in System.Transactions is a lightweight way to use transaction processing in .NET - its not just for Database transactions either
  • String.IsNullOrEmpty is one that I am surprised to learn a lot of devs don't know about
  • List.ForEach - iterate through your generic list using a delegate method - can be faster than a normal foreach loop too

There are more, but that is the 3 obvious ones of the top of my head...

link|flag
add comment
1 2 3 4 5 7 next

Your Answer

Get an OpenID
or

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