vote up 879 vote down star
1,285

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

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
2  
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 12 more comments

249 Answers

1 2 3 4 5 9 next
vote up 107 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
vote up 40 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 7 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 28 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 149 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
2  
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 35 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 71 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 88 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 2 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 2 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 0 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 52 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
5  
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 '08 at 7:15
2  
is and as won't do user casts. So, the above code is asking with the is operator if obj is derived from MyClass (or has an implicit system defined cast). Also, is fails on null. Both of these edge cases may be important to your code. For instance, you may want to write: if( obj == null || obj is MyClass ) c = (MyClass)obj; But this is strictly different from: try { c = (MyClass)obj; } catch { } since the former will not perform any user defined conversions, but the latter will. Without the null check, the former will also not set c when obj is null. – Adam Luter Sep 9 at 12:02
show 6 more comments
vote up 144 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
5  
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 '08 at 23:26
2  
also lambda without parameters ()=> DoSomething(); – pablito Jan 12 at 8:38
1  
I've used both { get; internal set; } and { get; protected set; }, so this pattern is consistent. – Keith May 4 at 21:23
show 16 more comments
vote up 78 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
2  
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 at 14:39
show 1 more comment
vote up 0 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 46 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 60 vote down

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

True, False, FileNotFound?

link|flag
29  
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
7  
Store values of a ThreeState CheckBox – Shimmy Jul 13 at 15:04
show 9 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 0 vote down

In no particular order:

Lists<> Mutex

The new property definitions shortcut in Framework 3.5.

link|flag
vote up 164 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
30  
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
19  
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
21  
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
14  
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 251 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
21  
Everyone should be using Path.Combine()... it's crazy not to. – Jon Tackabury Oct 21 '08 at 18:28
9  
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
6  
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
29  
@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
15  
Now if only it would take in a param array of items instead of just two.. – Pondidum Jun 8 at 15:27
show 22 more comments
vote up 95 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 3 more comments
vote up 107 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
17  
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 11 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 84 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 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 6 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

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 19 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 1 more comment
vote up 177 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
58  
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
10  
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
12  
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
7  
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
6  
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
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.