vote up 888 vote down star
1,292

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
14  
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
show 13 more comments

251 Answers

prev 1 5 6 7 8 9
vote up 1 vote down

@Horsey: You're right, I thought of that after I posted. I am no pro here and am still learning, so I do make the occasional bad post here and there.

@Mike: The as keyword is great, and also lends itself to the use of the "is" keyword:

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

I'm sure that this is no secret, but I did not find this for at least 6 months into learning C#.

link|flag
1  
Why not: MyClass c = obj as MyClass; if (c) { // your logic } – Matt Cruikshank Sep 17 '08 at 21:16
3  
i think it is redundant to use both is and as, pick one. – CiNN Oct 25 '08 at 9:06
1  
agree with Matt - better to use as and check for null – Dmitri Nesteruk Nov 7 '08 at 14:00
show 2 more comments
vote up 3 vote down

I have often come across the need to have a Generic parameter-object persisted into the viewstate in a base class.

public abstract class BaseListControl<ListType,KeyType,ParameterType>
                 : UserControl 
                 where ListType : BaseListType
                 && ParameterType : BaseParameterType, new
{

    private const string viewStateFilterKey = "FilterKey";

    protected ParameterType Filters
    {
        get
        {
            if (ViewState[viewStateFilterKey] == null)
                ViewState[viewStateFilterKey]= new ParameterType();

            return ViewState[viewStateFilterKey] as ParameterType;
        }
        set
        {
            ViewState[viewStateFilterKey] = value;
        }
    }

}

Usage:

private void SomeEventHappened(object sender, EventArgs e)
{
    Filters.SomeValue = SomeControl.SelectedValue;
}

private void TimeToFetchSomeData()
{
    GridView.DataSource = Repository.GetList(Filters);
}

This little trick with the "where ParameterType : BaseParameterType, new" is what makes it really work.
With this property in my baseclass, I can automate handling of paging, setting filter values to filter a gridview, make sorting really easy, etc etc.

Really just saying that generics can be an enormously powerful beast in the wrong hands.

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

Currying using

FastFunc<T,U>
link|flag
5  
How is this a C# feature? I thought this was F#? Can you explain more? – bennage Oct 27 '08 at 5:22
2  
How is this currying? Please provide an example. – Mark Good Sep 10 at 11:36
show 1 more comment
vote up 89 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
show 8 more comments
vote up 72 vote down

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

link|flag
1  
Using DebuggerDisplay Attribute (MSDN): msdn.microsoft.com/en-us/library/… – Mufasa Sep 26 '08 at 17:14
show 2 more comments
vote up 36 vote down
  • TransactionScope and DependentTransaction in System.Transactions is a lightweight way to use transaction processing in .NET - it's not just for Database transactions either
  • String.IsNullOrEmpty is one that I am surprised to learn a lot of developers don't know about
  • List.ForEach - iterate through your generic list using a delegate method

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

link|flag
1  
Any proof that List.ForEach can be faster than normal loop? – arbiter Jul 17 at 14:43
3  
That List.ForEach is faster than foreach or for(;;) is completely bonkers. ForEach uses a method/function delegate to implement the behavior. This is first of all, means worse cache locality because the code is generally executed further away (in memory) from the actual loop. Secondly all you really need to do to verify that this is slower is to look a the generated native code. There's a lot more stuff going on with List.ForEach than you might think. – John Leidegren Aug 5 at 17:13
1  
+1 for String.IsNullOrEmpty. I use it all the time. – Bernhof Aug 21 at 12:19
show 1 more comment
vote up 150 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
8  
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 '08 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
1  
This is only more performant if the usual case is the cast failing. Otherwise the direct cast (type)object is faster. It takes longer for a direct cast to throw an exception than to return null though. – Spence Jan 26 at 14:54
8  
Right along the same lines of the "as" keyword... the "is" keyword is just as useful. – dkpatt May 7 at 19:09
3  
You can abuse it and have a NullReferenceException down your road later when you could have had a InvalidCastException earlier. – Andrei Rinea Sep 2 at 7:55
show 5 more comments
vote up 29 vote down

Honestly the experts by the very definition should know this stuff. But to answer your question:

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

The compiler flagging for numbers are widely known for these:

Decimal = M
Float = F
Double = D

// for example
double d = 30D;

However these are more obscure:

Long = L
Unsigned Long = UL
Unsigned Int = U
link|flag
1  
The M syntax comes from the old VB type called Money. M == Money == Decimal. – Nick Berardi Mar 30 at 19:46
1  
is there one for byte? – Maslow Jun 26 at 21:59
1  
Nope, anything less than an Int32 is automatically inferred by the compiler based on the type to the left of it – Nick Berardi Jun 28 at 10:59
show 1 more comment
vote up 8 vote down

Two of my personal favourites, which I see rarely used:

  1. Snippets (particularly for properties, which was made even better for 2008)
  2. The ObsoleteAttribute
link|flag
1  
I like the switch snippet very much. Makes switching on an enum sooo much easier ;) – OregonGhost Mar 30 at 12:34
show 4 more comments
vote up 41 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
2  
using can also be used to alias a long namespace to a more convenient string, i.e.: using ZipEncode = MyCompany.UtilityCode.Compression.Zip.Encoding; There's more here: msdn.microsoft.com/en-us/library/… – Dave R. Dec 9 '08 at 15:41
7  
It really sucks that you can't google ?? – Lucas McCoy Jun 19 at 15:02
2  
@LucasAardvark: As J Steen mentioned it's called the null coalescing operator. Search for that! – kokos Jun 21 at 1:54
show 6 more comments
vote up 108 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
9  
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 '08 at 1:18
prev 1 5 6 7 8 9

Your Answer

Get an OpenID
or

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