vote up 888 vote down star
1,294

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

252 Answers

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

Many answers here suggest improvements that Resharper highlights by default, such as changing member variables to readonly or const. There are lots of other code improvements and optimizations they automatically check for, that Visual Studio should have been doing all along.

(R# is the best IMHO tool for .NET, and no, I don't work for them.)

link|flag
1  
I simply haven't seen anything as powerful for Java or C++, so in a way, having a very good IDE+tools is a definite plus to the language. IMHO. – Yurik Oct 1 at 14:39
show 1 more comment
vote up 0 vote down

Keeps DataGridView from showing the property:

[System.ComponentModel.Browsable(false)]
public String LastActionID{get; private set;}

Lets you set a friendly display for components (like a DataGrid or DataGridView):

[System.ComponentModel.DisplayName("Last Action")]
public String LastAction{get; private set;}

For your backing variables, if you don't want anything accessing them directly this makes it tougher:

[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
	private DataController p_dataSources;
link|flag
vote up 0 vote down

A lot of this is explained already, in the standard. It's a good read for any beginner as well as expert, it's a lot to read, but it's the official standard, and it's filled with juicy details.

Once you fully understand C#, it's time to take this further to understand the fundamentals of the Common Language Infrastructure. The architecture and underpinnings of C#.

I've met a variety of programmers that don't know the difference between an object and a ValueType except the adherent limitations thereof.

Familiarize yourself with these two documents and you'll never become that person.

link|flag
vote up 0 vote down

Use of @ before a string that contains escape char. Basically when a physical path is used to assign in a string variable everybody uses '\' where escape character is present in a string.

e.g. string strPath="D:\websites\web1\images\";

But escape characters can be ignored using @ before the string value.

e.g. string strPath=@"D:\websites\web1\images\";

link|flag
vote up 0 vote down

I love abusing the fact that static templated classes don't share their static members.

Here's a threadsafe (at creation time) and cheap substitute to any Dictionary

public static class MyCachedData<T>{
    static readonly CachedData Value;
    static MyCachedData(){
       Value=// Heavy computation, such as baking IL code or doing lots of reflection on a type
    }
}

Cheers, Florian

link|flag
vote up 0 vote down

I love Delegate and also Linq-To-Object. I don't know whether anybody mentioned it or not. But it's simple.

var AnotherThings = from t in 'A collection of things'
                    where (t.Name.StartWith("Foo"))
                    orderby t.Index descending
                    select (new Func<AnotherThing>(() =>
                    {
                        AnotherThing at = t.CreateAnotherThing();
                        at.Initialize();
                        .
                        .
                        .
                        return at;
                    }))());

The above code snippet demonstrates how to define a method inline and call it in a Linq query.

link|flag
1  
This code is complex a little in my opinion. Actually I think almost all of C# developers know these features, but they don't use them in such case because of too complex syntax. I'd rather use LINQ extension methods than language-integrated queries here. – L. Shaydariv Nov 2 at 8:26
show 7 more comments
vote up 0 vote down

Convert enum values to a string value

Given the enum

enum Country
{
    UnitedKingdom, 
    UnitedStates,
    UnitedArabEmirates,
}

using it:

public static void PrintEnumAsString( Country country )
{
    Console.Writeline( country.ToString() );
}

will print the name of the enum value as a string, e.g. "UnitedKingdom"

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

A couple I can think of:

[field: NonSerialized()]
public EventHandler event SomeEvent;

This prevents the event from being serialised. The 'field:' indicates that the attribute should be applied to the event's backing field.

Another little known feature is overriding the add/remove event handlers:

public event EventHandler SomeEvent
{
    add
    {
        // ...
    }

    remove
    {
        // ...
    }
}
link|flag
vote up 0 vote down

__arglist as well

link|flag
vote up -2 vote down

Not hidden, but pretty neat. I find this a more succinct substitute for a simple if-then-else that just assigns a value based on a condition.

string result = 
              i < 2 ?               //question
              "less than 2" :       //answer
              i < 5 ?               //question
             "less than 5":         //answer   
              i < 10 ?              //question
              "less than 10":       //answer
              "something else";     //default answer
link|flag
3  
However, the comparisons are either in the wrong order (i.e. compare 2, then 5, then 10) or they are the comparison is the wrong direction (i.e. test for greater than instead of less than). When i = 1, it will set result to "less than 10". – Mark Apr 21 at 17:51
show 2 more comments
vote up -3 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 -14 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
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.