vote up 39 vote down star
46

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
14  
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
3  
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

36 Answers

1 2 next
vote up 56 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
13  
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
29  
@jrista: O please NO... not m_ ... aargh the horror... – fretje Jun 26 at 8:14
show 11 more comments
vote up 1 vote down

No operator shortcuts in Linq-To-Sql

See here.

In short, inside the conditional clause of a Linq-To-Sql query, you cannot use conditional shortcuts like || and && to avoid null reference exceptions; Linq-To-Sql evaluates both sides of the OR or AND operator even if the first condition obviates the need to evaluate the second condition!

link|flag
vote up -1 vote down

This is my favorite: C#: Silly Arithmetic

link|flag
vote up 3 vote down

Maybe not really a gotcha because the behavior is written clearly in MSDN, but has broken my neck once because I found it rather counter-intuitive:

Image image = System.Drawing.Image.FromFile("nice.pic");

This guy leaves the "nice.pic" file locked until the image is disposed. At the time I faced it I though it would be nice to load icons on the fly and didn't realize (at first) that I ended up with dozens of open and locked files! Image keeps track of where it had loaded the file from...

How to solve this? I thought a one liner would do the job. I expected an extra parameter for FromFile(), but had none, so I wrote this...

using (Stream fs = new FileStream("nice.pic", FileMode.Open, FileAccess.Read))
{
    image = System.Drawing.Image.FromStream(fs);
}
link|flag
show 1 more comment
vote up 3 vote down

The Nasty Linq Caching Gotcha

See my question that led to this discovery, and the blogger who discovered the problem.

In short, the DataContext keeps a cache of all Linq-to-Sql objects that you have ever loaded. If anyone else makes any changes to a record that you have previously loaded, you will not be able to get the lastest data, even if you explicitly reload the record!

This is because of a property called ObjectTrackingEnabled on the DataContext, which by default is true. If you set that property to false, the record will be loaded anew every time... BUT... you can't persist any changes to that record with SubmitChanges().

GOTCHA!

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

Leaking memory because you didn't un-hook events.

This even caught out some senior developers I know.

Imagine a WPF form with lots of things in it, and somewhere in there you subscribe to an event. If you don't unsubscribe then the entire form is kept around in memory after being closed and de-referenced.

I believe the issue I saw was creating a DispatchTimer in the WPF form and subscribing to the Tick event, if you don't do a -= on the timer your form leaks memory!

In this example your teardown code should have

timer.Tick -= TimerTickEventHandler;

This one is especially tricky since you created the instance of the DispatchTimer inside the WPF form, so you would think that it would be an internal reference handled by the Garbage Collection process... unfortunately the DispatchTimer uses a static internal list of subscriptions and services requests on the UI thread, so the reference is 'owned' by the static class.

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

Linq-To-Sql and the database/local code ambiguity

Sometimes Linq just can't work out whether a certain method is meant to be executed on the DB or in local code.

See here and here for the problem statement and the solution.

link|flag
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
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
3  
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
2  
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

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
[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 4 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
2  
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
2  
@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 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 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 6 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 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 13 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 5 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 3 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 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 40 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 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
2  
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 4 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 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 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 6 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
show 1 more comment
vote up 8 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
show 1 more comment
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 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
4  
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 -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
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.