vote up 37 vote down star
45

This question is similar to this one, but focused on C# and .NET.

I was recently working with a DateTime object, and wrote something like this:

DateTime dt = DateTime.Now;
dt.AddDays(1);
return dt; // still today's date! WTF?

The intellisense documentation for AddDays says it adds a day to the date, which it doesn't - it actually returns a date with a day added to it, so you have to write it like:

DateTime dt = DateTime.Now;
dt = dt.AddDays(1);
return dt; // tomorrow's date

This one has bitten me a number of times before, so I thought it would be useful to catalog the worst C# gotchas.

flag
13  
return DateTime.Now.AddDays(1); – crashmstr Oct 27 '08 at 19:38
2  
AFAIK, the built in value types are all immutable, at least in that any method included with the type returns a new item rather than modifying the existing item. At least, I can't think of one off the top of my head that doesn't do this: all nice and consistent. – Joel Coehoorn Oct 27 '08 at 19:39
1  
The intellisense gives you all the info you need. It says it returns a DateTime object. If it just altered the one you passed in, it would be a void method. – John Kraft Oct 27 '08 at 21:50
4  
Not necessarily: StringBuilder.Append(...) returns "this" for example. That's quite common in fluent interfaces. – Jon Skeet Oct 27 '08 at 22:49
1  
That's why I like the '!' convention in Lisp, AddDays (returns new value) and AddDays! (modifies existing value) are easily and instantly distinguishable. – Anton Tykhyy May 21 at 14:43
show 5 more comments

35 Answers

1 2 next
vote up 55 vote down check
private int myVar;
public int MyVar
{
    get { return MyVar; }
}

Blammo. Your app crashes with no stack trace. Happens all the time.

(Notice capital MyVar instead of lowercase myVar in the getter)

link|flag
12  
and SO appropriate for this site :) – gbjbaanb Oct 27 '08 at 23:18
6  
I put underscores on the private member, helps a lot! – chakrit Oct 28 '08 at 0:00
13  
I use automatic properties where I can, stops this kind of problem alot ;) – TWith2Sugars Dec 19 '08 at 15:50
7  
This is a GREAT reason to use prefixes for your private fields (there are others, but this is a good one): _myVar, m_myVar – jrista Jun 26 at 8:01
25  
@jrista: O please NO... not m_ ... aargh the horror... – fretje Jun 26 at 8:14
show 11 more comments
vote up 9 vote down

I saw this one posted the other day, and I think it is pretty obscure, and painful for those that don't know

int x = 0;
x = x++;
return x;

As that will return 0 and not 1 as most would expect

link|flag
2  
I hope that wouldn't actually bite people though - I really hope they wouldn't write it in the first place! (It's interesting anyway, of course.) – Jon Skeet Oct 27 '08 at 19:34
1  
I don't think this is very obscure... – Chris Marasti-Georg Oct 27 '08 at 19:36
show 8 more comments
vote up 1 vote down

Ditto with mystring.Replace("x","y")

link|flag
4  
It's immutable; myString is not changed, it returns a new string where 'x' has been replaced by 'y'. – Robin Bennett Oct 28 '08 at 9:11
vote up 66 vote down

Type.GetType

The one which I've seen bite lots of people is Type.GetType(string). They wonder why it works for types in their own assembly, and some types like System.String, but not System.Windows.Forms.Form. The answer is that it only looks in the current assembly and in mscorlib.


Anonymous methods

C# 2.0 introduced anonymous methods, leading to nasty situations like this:

using System;
using System.Threading;

class Test
{
    static void Main()
    {
        for (int i=0; i < 10; i++)
        {
            ThreadStart ts = delegate { Console.WriteLine(i); };
            new Thread(ts).Start();
        }
    }
}

What will that print out? Well, it entirely depends on the scheduling. It will print 10 numbers, but it probably won't print 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 which is what you might expect. The problem is that it's the i variable which has been captured, not its value at the point of the creation of the delegate. This can be solved easily with an extra local variable of the right scope:

using System;
using System.Threading;

class Test
{
    static void Main()
    {
        for (int i=0; i < 10; i++)
        {
            int copy = i;
            ThreadStart ts = delegate { Console.WriteLine(copy); };
            new Thread(ts).Start();
        }
    }
}


Deferred execution of iterator blocks

This "poor man's unit test" doesn't pass - why not?

using System;
using System.Collections.Generic;
using System.Diagnostics;

class Test
{
    static IEnumerable<char> CapitalLetters(string input)
    {
        if (input == null)
        {
            throw new ArgumentNullException(input);
        }
        foreach (char c in input)
        {
            yield return char.ToUpper(c);
        }
    }

    static void Main()
    {
        // Test that null input is handled correctly
        try
        {
            CapitalLetters(null);
            Console.WriteLine("An exception should have been thrown!");
        }
        catch (ArgumentNullException)
        {
            // Expected
        }
    }
}

The answer is that the code within the source of the CapitalLetters code doesn't get executed until the iterator's MoveNext() method is first called.

I've got some other oddities on my brainteasers page.

link|flag
1  
The iterator example is devious! – Jimmy Oct 27 '08 at 19:49
1  
why not split this into 3 answer so we can vote each one up instead of all together? – chakrit Oct 28 '08 at 0:04
3  
@chakrit: In retrospect, that would probably have been a good idea, but I think it's too late now. It might also have looked like I was just trying to get more rep... – Jon Skeet Oct 28 '08 at 6:20
3  
Actually Type.GetType works if you provide the AssemblyQualifiedName. Type.GetType("System.ServiceModel.EndpointNotFoundException, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); – chilltemp Oct 28 '08 at 20:23
show 4 more comments
vote up 8 vote down

overloaded == operators and untyped containers (arraylists, datasets, etc.):

string my = "my "
Debug.Assert(my+"string" == "my string"); //true

var a = new ArrayList();
a.Add(my+"string");
a.Add("my string");

// uses ==(object) instead of ==(string)
Debug.Assert(a[1] == "my string"); // true, due to interning magic
Debug.Assert(a[0] == "my string"); // false

Solutions?

  • always use string.Equals(a, b) when you are comparing string types
  • using generics like List<string> to ensure that both operands are strings.

  • link|flag
    show 4 more comments
    vote up 37 vote down

    Here's another time one that gets me:

    static void PrintHowLong(DateTime a, DateTime b)
    {
        TimeSpan span = a - b;
        Console.WriteLine(span.Seconds);        // WRONG!
        Console.WriteLine(span.TotalSeconds);   // RIGHT!
    }
    
    link|flag
    2  
    That one has burned me before. – kurious Nov 1 '08 at 20:04
    1  
    Burned me last month. Ow. – Dave Markle Dec 23 '08 at 3:05
    show 3 more comments
    vote up 7 vote down

    Garbage collection and Dispose(). Although you don't have to do anything to free up memory, you still have to free up resources via Dispose(). This is an immensely easy thing to forget when you are using WinForms, or tracking objects in any way.

    link|flag
    2  
    I think the concern was implementing IDisposable correctly. – Mark Brackett Oct 27 '08 at 23:16
    1  
    Implementing IDisposable correctly is very hard to and understand even the best advice I have found on this (.NET Framework Guidelines) can be confusing to apply until you finally "get it". – Quibblesome Oct 23 at 13:46
    show 3 more comments
    vote up -1 vote down

    you cannot assign null to a DateTime variable in C# 2.0

    link|flag
    1  
    This is so much part of the .NET core behaviour, you can hardly consider it a gotcha. – Konrad Rudolph Oct 27 '08 at 21:06
    1  
    "Gotchas" are things that .Net allows you to do even though they're sure to hit you where the good lord split you. – MusiGenesis Jun 27 at 1:36
    show 1 more comment
    vote up 0 vote down

    Some code:

            List<int> a = new List<int>();
            for (int i = 0; i < 10; i++)
            {
                a.Add(i);
            }
    
            var q1 = (from aa in a
                      where aa == 2
                      select aa).Single();
    
            var q2 = (from aa in a
                      where aa == 2
                      select aa).First();
    

    q1 - in this query check all integers in List; q2 - check integers until find "right" integer.

    link|flag
    3  
    That should be somewhat obvious... q1 has to check the entire list to ensure there is only 1 match. – CodeMonkey1 Mar 12 at 22:12
    vote up 2 vote down

    If you're coding for MOSS and you get a site reference this way:

    SPSite oSiteCollection = SPContext.Current.Site;
    

    and later in your code you say:

    oSiteCollection.Dispose();
    

    From MSDN:

    If you create an SPSite object, you can use the Dispose method to close the object. However, if you have a reference to a shared resource, such as when the object is provided by the GetContextSite method or Site property (for example, SPContext.Current.Site), do not use the Dispose method to close the object, but instead allow Windows SharePoint Services or your portal application to manage the object. For more information about object disposal, see Best Practices: Using Disposable Windows SharePoint Services Objects.

    This happens to every MOSS programmer and some point.

    link|flag
    vote up 7 vote down

    When you start a process (using System.Diagnostics) that writes to the console, but you never read the Console.Out stream, after a certain amount of output your app will appear to hang.

    link|flag
    vote up 5 vote down

    foreach loops variables scope!

    var l = new List<Func<string>>();
    var strings = new[] { "Lorem" , "ipsum", "dolor", "sit", "amet" };
    foreach (var s in strings)
    {
        l.Add(() => s);
    }
    
    foreach (var a in l)
        Console.WriteLine(a());
    

    prints five "amet", while the following example works fine

    var l = new List<Func<string>>();
    var strings = new[] { "Lorem" , "ipsum", "dolor", "sit", "amet" };
    foreach (var s in strings)
    {
        var t = s;
        l.Add(() => t);
    }
    
    foreach (var a in l)
        Console.WriteLine(a());
    
    link|flag
    2  
    This is essentially equivalent to Jon's example with anonymous methods. – Mehrdad Afshari Aug 25 at 0:08
    vote up 2 vote down

    I frequently have to remind myself that DateTime is a value type, not a ref type. Just seems too weird to me, especially considering the variety of constructors for it.

    link|flag
    1  
    I constantly type lowercase datetime all the time... luckily intellisense fix it for me :-) – chakrit Oct 27 '08 at 23:57
    vote up 3 vote down

    There is a whole book on .NET Gotchas

    My favourite is the one where you create a class in C#, inherit it to VB and then attempt to re-inherit back to C# and it doesnt work. ARGGH

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

    Value objects in arrays

    struct Point { ... }
    List<Point> mypoints = ...;
    
    mypoints[i].x = 10;
    

    has no effect.

    mypoints[i] returns a copy of a Point value object. C# happily lets you modify an attribute of the copy. Silently doing nothing.


    Update: This appears to be fixed in C# 3.0:

    Cannot modify the return value of 'System.Collections.Generic.List<Foo>.this[int]' because it is not a variable
    
    link|flag
    show 2 more comments
    vote up 15 vote down

    If you count ASP.NET, I'd say the webforms lifecycle is a pretty big gotcha to me. I've spent countless hours debugging poorly written webforms code, just because a lot of developers just don't really understand when to use which event handler (me included, sadly).

    link|flag
    1  
    That's why I moved to MVC... viewstate headaches... – chakrit Oct 27 '08 at 23:56
    1  
    There was a whole other question devoted specifically to ASP.NET gotchas (deservedly so). The basic concept of ASP.NET (making web apps seem like windows apps for the developer) is so horribly misguided that I'm not sure it even counts as a "gotcha". – MusiGenesis Oct 28 '08 at 0:53
    vote up 38 vote down

    Re-throwing exceptions

    A gotcha that gets lots of new developers, is the re-throw exception semantics.

    Lots of time I see code like the following

    catch(Exception e) 
    {
       // Do stuff 
       throw e; 
    }
    

    The problem is that it wipes the stack trace and makes diagnosing issues much harder, cause you can not track where the exception originated.

    The correct code is either the throw statement with no args

    catch(Exception e) 
    {
       // Do stuff 
       throw; 
    }
    

    Or wrapping the exception in another one, and using inner exception to get the original stack trace:

    catch(Exception e) 
    {
       // Do stuff 
       throw new MySpecialException(e); 
    }
    
    link|flag
    show 3 more comments
    vote up 0 vote down

    The following will not catch the exception in .Net. Instead it results in a StackOverflow exception.

    private void button1_Click( object sender, EventArgs e ) {
        try {
        	CallMe(234);
        } catch (Exception ex) {
        	label1.Text = ex.Message.ToString();
        }
    }
    private void CallMe( Int32 x ) {
        CallMe(x);
    }
    
    link|flag
    show 1 more comment
    vote up 2 vote down

    MemoryStream.GetBuffer() vs MemoryStream.ToArray(). The former returns the whole buffer, the latter just the used portion. Yuck.

    link|flag
    1  
    @MusiGenesis, use using(Stream stream = new ...) { } . – tuinstoel Mar 12 at 21:16
    show 1 more comment
    vote up 4 vote down

    My worst one so far I just figured out today... If you override object.Equals(object obj), you can wind up discovering that:

    ((MyObject)obj).Equals(this);
    

    does not behave the same as:

    ((MyObject)obj) == this;
    

    One will call your overriden function, the other will NOT.

    link|flag
    3  
    You can override the == operator, but overriding the .Equals() won't do it for you. So you could hypothetically override both .Equals() and ==, and have them do different things :\ – GWLlosa Jun 30 at 13:09
    show 2 more comments
    vote up 12 vote down

    For C/C++ programmers, the transition to C# is a natural one. However, the biggest gotcha I've run into personally (and have seen with others making the same transition) is not fully understanding the difference between classes and structs in C#.

    In C++, classes and structs are identical; they only differ in the default visibility, where classes default to private visibility and structs default to public visibility. In C++, this class definition

        class A
        {
        public:
            int i;
        };
    

    is functionally equivalent to this struct definition.

        struct A
        {
            int i;
        };
    

    In C#, however, classes are reference types while structs are value types. This makes a BIG difference in (1) deciding when to use one over the other, (2) testing object equality, (3) performance (e.g., boxing/unboxing), etc.

    There is all kinds of information on the web related to the differences between the two (e.g., here). I would highly encourage anyone making the transition to C# to at least have a working knowledge of the differences and their implications.

    link|flag
    vote up 3 vote down

    Dictionary<,>: "The order in which the items are returned is undefined". This is horrible, because it can bite you sometimes, but work others, and if you've just blindly assumed that Dictionary is going to play nice ("why shouldn't it? I thought, List does"), you really have to have your nose in it before you finally start to question your assumption.

    (Similar question here.)

    link|flag
    3  
    Of course List<T> plays nice. And use SortedDictionary<T> if the order of items matters to you. – Allon Aug 22 at 20:52
    show 4 more comments
    vote up 5 vote down

    DateTime.ToString("dd/MM/yyyy"); This will actually not always give you dd/MM/yyyy but instead it will take into account the regional settings and replace your date separator depending on where you are. So you might get dd-MM-yyyy or something alike.

    The right way to do this is to use DateTime.ToString("dd'/'MM'/'yyyy");

    link|flag
    4  
    Changed mm to MM - mm is minutes, and MM is months. Another gotcha, I guess... – Kobi Jul 8 at 11:17
    show 1 more comment
    vote up 1 vote down

    Today I fixed a bug that eluded for long time. The bug was in a generic class that was used in multi threaded scenario and a static int field was used to provide lock free synchronisation using Interlocked. The bug was caused because each instantiation of the generic class for a type has its own static. So each thread got its own static field and it wasn't used a lock as intended.

        class SomeGeneric<T>
        {
        public static int i = 0;
        }
    
        class Test
        {
        public static void main(string[] args)
        {
         SomeGeneric<int>.i = 5;
         SomeGeneric<string>.i = 10;
         Console.WriteLine(SomeGeneric<int>.i);
         Console.WriteLine(SomeGeneric<string>.i);
         Console.WriteLine(SomeGeneric<int>.i);
        }
    

    This prints 5 10 5

    link|flag
    show 2 more comments
    vote up 0 vote down

    The worst thing it happen to me was the webBrowser documentText issue:

    http://geekswithblogs.net/paulwhitblog/archive/2005/12/12/62961.aspx#107062

    the AllowNavigation solutions works in Windows forms...

    but in compact framework the property doesn't exists...

    ...so far the only workaround I found was to rebuild the browser control:

    http://social.msdn.microsoft.com/Forums/it-IT/netfxcompact/thread/5637037f-96fa-48e7-8ddb-6d4b1e9d7db9

    But doing so, you need to handle the browser history at hands ... :P

    link|flag
    vote up 3 vote down

    I'm a bit late to this party, but I have two gotchas that have both bitten me recently:

    DateTime resolution

    The Ticks property measures time in 10-millionths of a second (100 nanosecond blocks), however the resolution is not 100 nanoseconds, it's about 15ms.

    This code:

    long now = DateTime.Now.Ticks;
    for (int i = 0; i < 10; i++)
    {
        System.Threading.Thread.Sleep(1);
        Console.WriteLine(DateTime.Now.Ticks - now);
    }
    

    will give you an output of (for example):

    0
    0
    0
    0
    0
    0
    0
    156254
    156254
    156254
    

    Similarly, if you look at DateTime.Now.Millisecond, you'll get values in rounded chunks of 15.625ms: 15, 31, 46, etc.


    Path.Combine

    A great way to combine file paths, but it doesn't always behave the way you'd expect.

    If the second parameter starts with a \ character, it won't give you a complete path:

    This code:

    string prefix1 = "C:\\MyFolder\\MySubFolder";
    string prefix2 = "C:\\MyFolder\\MySubFolder\\";
    string suffix1 = "log\\";
    string suffix2 = "\\log\\";
    
    Console.WriteLine(Path.Combine(prefix1, suffix1));
    Console.WriteLine(Path.Combine(prefix1, suffix2));
    Console.WriteLine(Path.Combine(prefix2, suffix1));
    Console.WriteLine(Path.Combine(prefix2, suffix2));
    

    Gives you this output:

    C:\MyFolder\MySubFolder\log\
    \log\
    C:\MyFolder\MySubFolder\log\
    \log\
    
    link|flag
    1  
    The quantization of times in ~15ms intervals isn't because of a lack of accuracy in the underlying timing mechanism (I neglected to elaborate on this earlier). It's because your app is running inside a multi-tasking OS. Windows checks in with your app every 15ms or so, and during the little time slice it gets, your app processes all of the messages that were queued up since your last slice. All of your calls within that slice return the exact same time because they're all made at effectively the exact same time. – MusiGenesis Jul 17 at 1:53
    1  
    @MusiGenesis: I know (now) how it works, but it seems misleading to me to have such a precise measure which isn't really that precise. It's like saying that I know my height in nanometres when really I'm just rounding it to the nearest ten million. – Damovisa Jul 17 at 2:25
    1  
    DateTime is quite capable of storing up to a single tick; it's DateTime.Now that isn't using that accuracy. – Ruben Sep 21 at 23:31
    vote up 1 vote down
    [Serializable]
    class Hello
    {
        readonly object accountsLock = new object();
    }
    
    //Do stuff to deserialize Hello with BinaryFormatter
    //and now... accountsLock == null ;)
    

    Moral of the story : Field initialiser are not runned when deserializing an object

    link|flag
    vote up 1 vote down

    ASP.NET:

    If you are using Linq-To-SQL, you call SubmitChanges() on the data context and it throws an exception (e.g. duplicate key or other constraint violation), the offending object values remain in your memory while you are debugging, and will be resubmitted every time you subsequently call SubmitChanges().

    Now here's the real kicker: the bad values will remain in memory even if you push the "stop" button in your IDE and restart! I don't understand why anyone thought this was a good idea - but that little ASP.NET icon that pops up in your system tray stays running, and it appears to save your object cache. If you want to flush your memory space, you have to right-click that icon and forcibly shut it down! GOTCHA!

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

    MS SQL Server can't handle dates before 1753. Significantly, that is out of synch with the .NET DateTime.MinDate constant, which is 1/1/1. So if you try to save a mindate, a malformed date (as recently happened to me in a data import) or simply the birth date of William the Conqueror, you're gonna be in trouble. There is no built-in workaround for this; if you're likely to need to work with dates before 1753, you need to write your own workaround.

    link|flag
    2  
    Quite frankly I think MS SQL Server has this right and .Net is wrong. If you do the research then you know that dates prior to 1751 get funky due to calendar changes, days completely skipped, etc. Most RDBMs have some cut off point. This should give you a starting point: ancestry.com/learn/library/… – Chris Lively Oct 8 at 15:22
    1  
    Also, the date is 1753.. Which was pretty much the first time that we have a continuous calendar without dates being skipped. SQL 2008 introduced the Date and datetime2 datetype which can accept dates from 1/1/01 to 12/31/9999. However, date comparisons using those types should be viewed with suspicion if you are really comparing pre-1753 dates. – Chris Lively Oct 8 at 15:27
    show 1 more comment
    vote up 1 vote down

    LINQ to SQL and One-To-Many Relationships

    This is a lovely one that has bitten me a couple times, and MS left it to one of their own developers to put it in her blog. I can't put it any better than she did, so take a look there.

    link|flag
    1 2 next

    Your Answer

    Get an OpenID
    or

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