vote up 912 vote down star
1,336

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
2  
--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 5 6 7 8 9 next
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 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 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 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 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 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 64 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
19  
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
22  
@zihotki: Wrong. var a = 5; Console.WriteLine(@a); Prints 5 – SLaks Jun 4 at 17:40
show 9 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 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 68 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 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 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 6 vote down

My favourite is the

global::

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

link|flag
4  
example -> msdn.microsoft.com/en-us/library/… – bob Jun 30 at 9:26
show 1 more comment
vote up 184 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
67  
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 '08 at 14:44
12  
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 '08 at 17:38
13  
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 '08 at 17:17
11  
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 '09 at 21:41
8  
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
show 7 more comments
vote up 20 vote down

Being able to have enum types have values other than int (the default)

public enum MyEnum : long
{
    Val1 = 1,
    Val2 = 2
}

Also, the fact that you can assign any numeric value to that enum:

MyEnum e = (MyEnum)123;
link|flag
2  
Why would you want to be able to assign just any old value to an enum? Isn't the point of an enum to limit the choices of values? – RobH May 8 at 18:51
1  
I believe the compiler has to support this for the sake of supporting flags. So given the enum above, if you do MyEnum val = MyEnum.Val1 | MyEnum.Val2 you would end up with a value that is outside of the already defined possible values. (in this case 3). Since you can do binary arithmetic on enums they can theoretically have many possible values. – lfoust May 11 at 21:35
show 2 more comments
vote up 4 vote down

In addition to duncansmart's reply, also extension methods can be used on framework 2.0. Just add an ExtensionAttribute class under System.Runtime.CompilerServices namespace and you can use extension methods (only with c# 3.0 of course).

namespace System.Runtime.CompilerServices
{
    public class ExtensionAttribute : Attribute
    { 
    }
}
link|flag
vote up 7 vote down

I love the fact that I can use LINQ to objects on plain old .NET 2.0 (i.e. without requiring .NET 3.5 to be installed everywhere). All you need is an implementation of all the query operator Extension methods - see LINQBridge

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

Lambda Expressions

Func<int, int, int> add = (a, b) => (a + b);

Obscure String Formats

Console.WriteLine("{0:D10}", 2); // 0000000002

Dictionary<string, string> dict = new Dictionary<string, string> { 
    {"David", "C#"}, 
    {"Johann", "Perl"}, 
    {"Morgan", "Python"}
};

Console.WriteLine( "{0,10} {1, 10}", "Programmer", "Language" );

Console.WriteLine( "-".PadRight( 21, '-' ) );

foreach (string key in dict.Keys)
{
    Console.WriteLine( "{0, 10} {1, 10}", key, dict[key] );				
}
link|flag
show 1 more comment
vote up 89 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
vote up 13 vote down

On the basis that this thread should be entitled "things you didn't know about C# until recently despite thinking you already knew everything", my personal feature is asynchronous delegates.

Until I read Jeff Richter's C#/CLR book (excellent book, everyone doing .NET should read it) I didn't know that you could call any delegate using BeginInvoke / EndInvoke. I tend to do a lot of ThreadPool.QueueUserWorkItem calls (which I guess is much like what the delegate BeginInvoke is doing internally), but the addition of a standardised join/rendezvous pattern may be really useful sometimes.

link|flag
show 2 more comments
vote up 113 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 '08 at 22:53
5  
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
18  
Something many people don't realise is that get and set can have different accessibility, eg: public string Name { get; private set;} – Nader Shirazie Jun 13 at 20:27
show 3 more comments
vote up 102 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
3  
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
show 4 more comments
vote up 270 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
27  
Everyone should be using Path.Combine()... it's crazy not to. – Jon Tackabury Oct 21 '08 at 18:28
11  
Path.Combine is also essential for cross-platform coding as it uses whatever path separator the current OS uses. – Gary Willoughby Nov 17 '08 at 9:57
7  
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 '09 at 16:34
36  
@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
19  
Now if only it would take in a param array of items instead of just two.. – Pondidum Jun 8 at 15:27
show 23 more comments
vote up 175 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
35  
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 '08 at 9:58
4  
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 '08 at 23:00
26  
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 '08 at 6:53
25  
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 '08 at 14:49
16  
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
show 16 more comments
vote up 2 vote down

In no particular order:

Lists<>
Mutex

The new property definitions shortcut in Framework 3.5.

link|flag
vote up -4 vote down

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

True, False, FileNotFound?

@Michael Stum - That is brilliant :-)

link|flag
vote up 64 vote down

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

True, False, FileNotFound?

link|flag
34  
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 '08 at 12:38
1  
I used a nullable bool when populating a ddl of employees. Active only = true. InActive only - false. Active and Inactive = null – Dining Philanderer Nov 6 '08 at 19:38
3  
Nullable types are handy for interaction with a database where table columns are often nullable. – tuinstoel Jan 1 '09 at 16:40
2  
Yes, No, Maybee? – Dan Blair May 22 at 20:19
8  
Store values of a ThreeState CheckBox – Shimmy Jul 13 at 15:04
show 9 more comments
vote up 48 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
show 1 more comment
vote up 1 vote down

@Brad Barker

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. :-)

Krzysztof Cwalina (one of the authors of Framwork Design Guidlines) has a good post here: http://blogs.msdn.com/kcwalina/archive/2008/07/16/Nullable.aspx

And Mike Hadlow has a nice post on Nullability Voodoo

link|flag
show 3 more comments
vote up 84 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
12  
Also, a @ constant accepts newlines inside. Perfect when assigning a multiline script to a string. – Tor Haugen Nov 19 '08 at 16:17
3  
Don't forget also to escape a quotation mark just double them up, in other words. [code]var candy = @"I like ""red"" candy canes.";[/code] – Dave Jan 10 '09 at 14:39
show 1 more comment
prev 1 5 6 7 8 9 next

Your Answer

Get an OpenID
or

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