vote up 105 vote down star
133

I collect a few corner cases and brain teasers and would always like to hear more. The page only really covers C# language bits and bobs, but I also find core .NET things interesting too. For example, here's one which isn't on the page, but which I find incredible:

string x = new string(new char[0]);
string y = new string(new char[0]);
Console.WriteLine(object.ReferenceEquals(x, y));

I'd expect that to print False - after all, "new" (with a reference type) always creates a new object, doesn't it? The specs for both C# and the CLI indicate that it should. Well, not in this particular case. It prints True, and has done on every version of the framework I've tested it with. (I haven't tried it on Mono, admittedly...)

Just to be clear, this is only an example of the kind of thing I'm looking for - I wasn't particularly looking for discussion/explanation of this oddity. (It's not the same as normal string interning; in particular, string interning doesn't normally happen when a constructor is called.) I was really asking for similar odd behaviour.

Any other gems lurking out there?

flag

I like those brain teasers. I think most of them are just interesting and weird edge cases, but the one on capturing variables in anonymous methods is more on the order of Something Everyone Needs To Understand. – Robert Rossney Oct 11 '08 at 20:14
20  
Tested on Mono 2.0 rc; returns True – Marc Gravell Oct 11 '08 at 21:35
Edited to explain that the string example was just that - an example. – Jon Skeet Oct 12 '08 at 18:07
11  
It's a memory conservation thing. Look up the MSDN documentation for the static method string.Intern. The CLR maintains a string pool. That's why strings with identical content shows up as references to the same memory i.e. object. – John Leidegren Feb 23 at 12:48
2  
btw, the corner case that you've shown is discussed and explained here: beyondthespec.com/blog/2009/… – opc Sep 20 at 11:28
show 13 more comments

22 Answers

vote up 130 vote down check

I think I showed you this one before, but I like the fun here - this took some debugging to track down! (the original code was obviously more complex and subtle...)

    static void Foo<T>() where T : new()
    {
        T t = new T();
        Console.WriteLine(t.ToString()); // works fine
        Console.WriteLine(t.GetHashCode()); // works fine
        Console.WriteLine(t.Equals(t)); // works fine

        // so it looks like an object and smells like an object...

        // but this throws a NullReferenceException...
        Console.WriteLine(t.GetType());
    }

So what was T...

Answer: any Nullable<T> - such as int?. All the methods are overridden, except GetType() which can't be; so it is cast (boxed) to object (and hence to null) to call object.GetType()... which calls on null ;-p


Update: the plot thickens... Ayende Rahien threw down a similar challenge on his blog, but with a where T : class, new():

private static void Main() {
    CanThisHappen<MyFunnyType>();
}

public static void CanThisHappen<T>() where T : class, new() {
    var instance = new T(); // new() on a ref-type; should be non-null, then
    Debug.Assert(instance != null, "How did we break the CLR?");
}

But it can be defeated! Using the same indirection used by things like remoting; warning - the following is pure evil:

class MyFunnyProxyAttribute : ProxyAttribute {
    public override MarshalByRefObject CreateInstance(Type serverType) {
        return null;
    }
}
[MyFunnyProxy]
class MyFunnyType : ContextBoundObject { }

With this in place, the new() call is redirected to the proxy (MyFunnyProxyAttribute), which returns null. Now go and wash your eyes!

link|flag
2  
Why can't Nullable<T>.GetType() be defined? Shouldn't the result be typeof(Nullable<T>)? – Drew Noakes Oct 23 '08 at 8:37
14  
Drew: the problem is that GetType() isn't virtual, so it's not overridden - which means that the value is boxed for the method call. The box becomes a null reference, hence the NRE. – Jon Skeet Oct 25 '08 at 19:52
@Drew; additionally, there are special boxing rules for Nullable<T>, which means that an empty Nullable<T> boxes to null, not a box that contains an empty Nullable<T> (and a null un-boxes to an empty Nullable<T>) – Marc Gravell Oct 26 '08 at 8:34
2  
Very, very cool. In an uncool kind of way. ;-) – Konrad Rudolph Oct 27 '08 at 21:33
Wow, thats pretty surprising to me. Had to play around in a test app to see it for myself. – Frank Schwieterman Jun 30 at 17:52
show 3 more comments
vote up 5 vote down
Public Class Item
   Public ID As Guid
   Public Text As String

   Public Sub New(ByVal id As Guid, ByVal name As String)
      Me.ID = id
      Me.Text = name
   End Sub
End Class

Public Sub Load(sender As Object, e As EventArgs) Handles Me.Load
   Dim box As New ComboBox
   Me.Controls.Add(box)          'Sorry I forgot this line the first time.'
   Dim h As IntPtr = box.Handle  'Im not sure you need this but you might.'
   Try
      box.Items.Add(New Item(Guid.Empty, Nothing))
   Catch ex As Exception
      MsgBox(ex.ToString())
   End Try
End Sub

The output is "Attempted to read protected memory. This is an indication that other memory is corrupt."

link|flag
1  
Interesting! Sounds like a compiler bug, though; I've ported to C# and it works fine. That said, there are a lot of issues with exceptions thrown in Load, and it behaves differently with/without a debugger - you can catch with a debugger, but not without (in some cases). – Marc Gravell Oct 11 '08 at 21:44
Sorry, I forgot, you need to add the combo box to the form before it will. – Joshua Oct 12 '08 at 2:07
Is this to do with dialog initialization using an SEH as some kind of horrible internal communication mechanism? I vaguely remember something like that in Win32. – Earwicker Mar 14 at 17:54
No. Attaching an unmanaged debugger revealed it to be a null pointer dereference. – Joshua Mar 14 at 19:53
This is the same problem cbp above. The valuetype being returned is a copy, therefore any references to any properties stemming from said copy are headed to bit-bucket land... bytes.com/topic/net/… – Ben Oct 9 at 4:04
show 1 more comment
vote up 54 vote down

Bankers' Rounding.

This one is not so much a compiler bug or malfunction, but certainly a strange corner case...

The .Net Framework employs a scheme or rounding known as Banker's Rounding.

In Bankers' Rounding the 0.5 numbers are rounded to the nearest even number, so

Math.Round(-0.5) == 0
Math.Round(0.5) == 0
Math.Round(1.5) == 2
Math.Round(2.5) == 2
etc...

This can lead to some unexpected bugs in financial calculations based on the more well known Round-Half-Up rounding.

This is also true of Visual Basic.

link|flag
7  
It seemed strange to me too. That is, at least, until I had round a big list of numbers and calculate their sum. You then realize that if you simply round up, you will end up with potentially huge difference from the sum of the non-rounded numbers. Very bad if you are doing financial calculations! – Tsvetomir Tsonev Oct 12 '08 at 10:05
2  
Having worked in financial environments I would disagree. If you business requirements need one way of rounding and if your software acts differently, that is where the problems arise. In heavy statistical calculations, Bankers' rounding is more accurate - which is what I think you are referring to. – Samuel Kim Oct 12 '08 at 12:18
78  
In case people didn't know, you can do: Math.Round(x, MidpointRounding.AwayFromZero); To change the rounding scheme. – ICR Oct 12 '08 at 12:24
7  
From the docs: The behavior of this method follows IEEE Standard 754, section 4. This kind of rounding is sometimes called rounding to nearest, or banker's rounding. It minimizes rounding errors that result from consistently rounding a midpoint value in a single direction. – ICR Oct 12 '08 at 12:25
4  
I wonder if this is why I see int(fVal + 0.5) so often even in languages which have a built-in rounding function. – Ben Blank Feb 24 at 19:50
show 1 more comment
vote up -15 vote down

I think the answer to the question is because .net uses string interning something that might cause equal strings to point to the same object (since a strings are mutable this is not a problem)

(I'm not talking about the overridden equality operator on the string class)

link|flag
5  
Strings are immutable, not mutable. And this isn't "normal" string interning - it only occurs when you pass in an empty char array. However, the question isn't really "why does this happen?" but "what similar things have you seen?" – Jon Skeet Oct 12 '08 at 18:04
4  
Reminds me of how any discussion of the Fizz Buzz problem leads to at least half the responses being solutions of the problem. – Wedge Oct 14 '08 at 1:41
vote up 7 vote down

Interesting - when I first looked at that I assumed it was something the C# compiler was checking for, but even if you emit the IL directly to remove any chance of interference it still happens, which means it really is the newobj op-code that's doing the checking.

var method = new DynamicMethod("Test", null, null);
var il = method.GetILGenerator();

il.Emit(OpCodes.Ldc_I4_0);
il.Emit(OpCodes.Newarr, typeof(char));
il.Emit(OpCodes.Newobj, typeof(string).GetConstructor(new[] { typeof(char[]) }));

il.Emit(OpCodes.Ldc_I4_0);
il.Emit(OpCodes.Newarr, typeof(char));
il.Emit(OpCodes.Newobj, typeof(string).GetConstructor(new[] { typeof(char[]) }));

il.Emit(OpCodes.Call, typeof(object).GetMethod("ReferenceEquals"));
il.Emit(OpCodes.Box, typeof(bool));
il.Emit(OpCodes.Call, typeof(Console).GetMethod("WriteLine", new[] { typeof(object) }));

il.Emit(OpCodes.Ret);

method.Invoke(null, null);

It also equates to true if you check against string.Empty which means this op-code must have special behaviour to intern empty strings.

link|flag
not to be a smart aleck or anything but have you heard of the [reflector](red-gate.com/products/reflector)? it's quite handy in these sorts of cases; – RCIX Jul 13 at 23:29
You're not being smart; you're missing the point - I wanted to generate specific IL for this one case. And anyway, given that Reflection.Emit is trivial for this type of scenario, it's probably as quick as writing a program in C# then opening reflector, finding the binary, finding the method, etc... And I don't even have to leave the IDE to do it. – Greg Beech Jul 14 at 9:35
vote up 24 vote down

When is a Boolean neither True nor False?

Bill discovered that you can hack a boolean so that if A is True and B is True, (A and B) is False.

Hacked Booleans

link|flag
48  
When it's FILE_NOT_FOUND, of course! – Greg Dec 18 '08 at 14:47
This is interesting because it means, mathematically speaking, that no statement in C# is provable. Ooops. – Simon Johnson Feb 1 at 0:56
@Simon Johnson - you mean VB.NET, to which that post refers, right? – Earwicker Mar 14 at 17:52
I've tested it and it works in c# as well. – RCIX Sep 20 at 0:54
1  
This example uses bitwise, not logical operators. How is that surprising? – jleedev Nov 26 at 17:02
show 1 more comment
vote up 54 vote down

What will this function do if called as Rec(0) (not under the debugger)?

static void Rec(int i)
{
    Console.WriteLine(i);
    if (i < int.MaxValue)
    {
        Rec(++i);
    }
}

Answer:

  • On 32-bit JIT it should result in a StackOverflowException
  • On 64-bit JIT it should print all the numbers to int.MaxValue

This is because the 64-bit JIT compiler applies tail call optimisation, whereas the 32-bit JIT does not.

Unfortunately I haven't got a 64-bit machine to hand to verify this, but the method does meet all the conditions for tail-call optimisation. If anybody does have one I'd be interested to see if it's true.

link|flag
4  
Has to be compiled in release mode, but most definitely works on x64 =) – Neil Williams Oct 12 '08 at 18:43
might be worth updating your answer when VS 2010 comes out since all current JITs will then do the TCO in Release mode – ShuggyCoUk Jun 28 at 23:40
1  
Just tried on VS2010 Beta 1 on 32-bit WinXP. Still get a StackOverflowException. – squillman Aug 26 at 20:45
Yeah, tail call support in the JIT is only useful if the compiler generates tail opcode prefixes, which it looks like the C# compiler still doesn't do. The equivalent F# code should work perfectly, though. :) – bcat Sep 5 at 4:03
vote up -2 vote down

The following prints False instead of throwing an overflow exception:

Console.WriteLine("{0}", yep(int.MaxValue ));


private bool yep( int val )
{
    return ( 0 < val * 2);
}
link|flag
1  
You can have your OverflowException by wrapping the test in checked{}, or setting the appropriate compiler option. It's not immediately obvious why the default is unchecked... msdn.microsoft.com/en-us/library/… – stevemegson Nov 5 '08 at 22:53
5  
The default is unchecked because the performance hit for doing this check on every integer operation in code is expensive. – Peter Oehlert Dec 23 '08 at 17:38
Also, the default for VB is to have it all checked. C# compiler team made a different choice for their default trying to more closely what their target audience would expect. – Peter Oehlert Dec 23 '08 at 17:39
2  
int.MaxValue * 2 is a negative number in unchecked arithmetic, which is the default in C#, there for the comparison returns false. This is not unexpected behavior :P – Lucas Jun 12 at 18:38
vote up -4 vote down

This one had me truly puzzled (I apologise for the length but it's WinForm). I posted it in the newsgroups a while back.

I've come across an interesting bug. I have workarounds but i'd like to know the root of the problem. I've stripped it down into a short file and hope someone might have an idea about what's going on.

It's a simple program that loads a control onto a form and binds "Foo" against a combobox ("SelectedItem") for it's "Bar" property and a datetimepicker ("Value") for it's "DateTime" property. The DateTimePicker.Visible value is set to false. Once it's loaded up, select the combobox and then attempt to deselect it by selecting the checkbox. This is rendered impossible by the combobox retaining the focus, you cannot even close the form, such is it's grasp on the focus.

I have found three ways of fixing this problem.

a) Remove the binding to Bar (a bit obvious)

b) Remove the binding to DateTime

c) Make the DateTimePicker visible !?!

I'm currently running Win2k. And .NET 2.00, I think 1.1 has the same problem. Code is below.

using System;
using System.Collections;
using System.Windows.Forms;

namespace WindowsApplication6
{
    public class Bar
    {
    	public Bar()
    	{
    	}
    }

    public class Foo
    {
    	private Bar m_Bar = new Bar();
    	private DateTime m_DateTime = DateTime.Now;

    	public Foo()
    	{
    	}

    	public Bar Bar
    	{
    		get
    		{
    			return m_Bar;
    		}
    		set
    		{
    			m_Bar = value;
    		}
    	}

    	public DateTime DateTime
    	{
    		get
    		{
    			return m_DateTime;
    		}
    		set
    		{
    			m_DateTime = value;
    		}
    	}
    }

    public class TestBugControl : UserControl
    {
    	public TestBugControl()
    	{
    		InitializeComponent();
    	}

    	public void InitializeData(IList types)
    	{
    		this.cBoxType.DataSource = types;
    	}

    	public void BindFoo(Foo foo)
    	{
    		this.cBoxType.DataBindings.Add("SelectedItem", foo, "Bar");
    		this.dtStart.DataBindings.Add("Value", foo, "DateTime");
    	}

    	/// <summary>
    	/// Required designer variable.
    	/// </summary>
    	private System.ComponentModel.IContainer components = null;

    	/// <summary>
    	/// Clean up any resources being used.
    	/// </summary>
    	/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    	protected override void Dispose(bool disposing)
    	{
    		if (disposing && (components != null))
    		{
    			components.Dispose();
    		}
    		base.Dispose(disposing);
    	}

    	#region Component Designer generated code

    	/// <summary>
    	/// Required method for Designer support - do not modify
    	/// the contents of this method with the code editor.
    	/// </summary>
    	private void InitializeComponent()
    	{
    		this.checkBox1 = new System.Windows.Forms.CheckBox();
    		this.cBoxType = new System.Windows.Forms.ComboBox();
    		this.dtStart = new System.Windows.Forms.DateTimePicker();
    		this.SuspendLayout();
    		//
    		// checkBox1
    		//
    		this.checkBox1.AutoSize = true;
    		this.checkBox1.Location = new System.Drawing.Point(14, 5);
    		this.checkBox1.Name = "checkBox1";
    		this.checkBox1.Size = new System.Drawing.Size(97, 20);
    		this.checkBox1.TabIndex = 0;
    		this.checkBox1.Text = "checkBox1";
    		this.checkBox1.UseVisualStyleBackColor = true;
    		//
    		// cBoxType
    		//
    		this.cBoxType.FormattingEnabled = true;
    		this.cBoxType.Location = new System.Drawing.Point(117, 3);
    		this.cBoxType.Name = "cBoxType";
    		this.cBoxType.Size = new System.Drawing.Size(165, 24);
    		this.cBoxType.TabIndex = 1;
    		//
    		// dtStart
    		//
    		this.dtStart.Location = new System.Drawing.Point(117, 40);
    		this.dtStart.Name = "dtStart";
    		this.dtStart.Size = new System.Drawing.Size(165, 23);
    		this.dtStart.TabIndex = 2;
    		this.dtStart.Visible = false;
    		//
    		// TestBugControl
    		//
    		this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
    		this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    		this.Controls.Add(this.dtStart);
    		this.Controls.Add(this.cBoxType);
    		this.Controls.Add(this.checkBox1);
    		this.Font = new System.Drawing.Font("Verdana", 9.75F,
    		System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point,
    		((byte)(0)));
    		this.Margin = new System.Windows.Forms.Padding(4);
    		this.Name = "TestBugControl";
    		this.Size = new System.Drawing.Size(285, 66);
    		this.ResumeLayout(false);
    		this.PerformLayout();

    	}

    	#endregion

    	private System.Windows.Forms.CheckBox checkBox1;
    	private System.Windows.Forms.ComboBox cBoxType;
    	private System.Windows.Forms.DateTimePicker dtStart;
    }

    public class Form1 : Form
    {
    	public Form1()
    	{
    		InitializeComponent();
    		this.Load += new EventHandler(Form1_Load);
    	}

    	void Form1_Load(object sender, EventArgs e)
    	{
    		InitializeControl();
    	}

    	public void InitializeControl()
    	{
    		TestBugControl control = new TestBugControl();
    		IList list = new ArrayList();
    		for (int i = 0; i < 10; i++)
    		{
    			list.Add(new Bar());
    		}
    		control.InitializeData(list);
    		control.BindFoo(new Foo());
    		this.Controls.Add(control);
    	}

    	/// <summary>
    	/// Required designer variable.
    	/// </summary>
    	private System.ComponentModel.IContainer components = null;

    	/// <summary>
    	/// Clean up any resources being used.
    	/// </summary>
    	/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    	protected override void Dispose(bool disposing)
    	{
    		if (disposing && (components != null))
    		{
    			components.Dispose();
    		}
    		base.Dispose(disposing);
    	}

    	#region Windows Form Designer generated code

    	/// <summary>
    	/// Required method for Designer support - do not modify
    	/// the contents of this method with the code editor.
    	/// </summary>
    	private void InitializeComponent()
    	{
    		this.components = new System.ComponentModel.Container();
    		this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    		this.Text = "Form1";
    	}

    	#endregion
    }

    static class Program
    {
    	/// <summary>
    	/// The main entry point for the application.
    	/// </summary>
    	[STAThread]
    	static void Main()
    	{
    		Application.EnableVisualStyles();
    		Application.SetCompatibleTextRenderingDefault(false);
    		Application.Run(new Form1());
    	}
    }
}
link|flag
vote up 13 vote down

C# supports conversions between arrays and lists as long as the arrays are not multidimensional and there is an inheritance relation between the types and the types are reference types

object[] oArray = new string[] { "one", "two", "three" };
string[] sArray = (string[])oArray;

// Also works for IList (and IEnumerable, ICollection)
IList<string> sList = (IList<string>)oArray;
IList<object> oList = new string[] { "one", "two", "three" };

Note that this does not work:

object[] oArray2 = new int[] { 1, 2, 3 }; // Error: Cannot implicitly convert type 'int[]' to 'object[]'
int[] iArray = (int[])oArray2;            // Error: Cannot convert type 'object[]' to 'int[]'
link|flag
3  
The IList<T> example is just a cast, because string[] already implements ICloneable, IList, ICollection, IEnumerable, IList<string>, ICollection<string>, and IEnumerable<string>. – Lucas Jun 12 at 18:46
vote up 15 vote down

I'm arriving a bit late to the party, but I've got three four five:

  1. If you poll InvokeRequired on a control that hasn't been loaded/shown, it will say false - and blow up in your face if you try to change it from another thread (the solution is to reference this.Handle in the creator of the control).

  2. Another one which tripped me up is that given an assembly with:

    enum MyEnum
    {
        Red,
        Blue,
    }
    

    if you calculate MyEnum.Red.ToString() in another assembly, and in between times someone has recompiled your enum to:

    enum MyEnum
    {
        Black,
        Red,
        Blue,
    }
    

    at runtime, you will get "Black".

  3. I had a shared assembly with some handy constants in. My predecessor had left a load of ugly-looking get-only properties, I thought I'd get rid of the clutter and just use public const. I was more than a little surprised when VS compiled them to their values, and not references.

  4. If you implement a new method of an interface from another assembly, but you rebuild referencing the old version of that assembly, you get a TypeLoadException (no implementation of 'NewMethod'), even though you have implemented it (see here).

  5. 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.

link|flag
3  
#2 is an interesting example. Enums are compiler mappings to integral values. So even though you didn't explicitly assign them values, the compiler did, resulting in MyEnum.Red = 0 and MyEnum.Blue = 1. When you added Black, you redefined the value 0 to map from Red to Black. I suspect that the problem would have manifested in other usages as well, such as Serialization. – LBushkin May 25 at 3:02
1  
+1 for Invoke required. At ours' we prefer to explicitly assign values to enums like Red=1,Blue=2 so new one can be inserted before or after it will always result in same value. It is specially necessary if you are saving values to databases. – TheVillageIdiot Jun 4 at 9:40
@aman.tur, you might be interested in this question: stackoverflow.com/questions/881726/… – Benjol Jun 4 at 11:26
10  
I disagree that #5 is an "edge case". Dictionary should not have a defined order based on when you insert values. If you want a defined order, use a List, or use a key that can be sorted in a way that's useful to you, or use an entirely different data structure. – Wedge Jun 26 at 8:30
3  
@Wedge, like SortedDictionary perhaps? – Allon Aug 22 at 16:54
show 4 more comments
vote up 9 vote down

Here is an example of how you can create a struct that causes the error message "Attempted to read or write protected memory. This is often an indication that other memory is corrupt". The difference between success and failure is very subtle.

The following unit test demonstrates the problem.

See if you can work out what went wrong.

    [Test]
    public void Test()
    {
        var bar = new MyClass
                          {
                              Foo = 500
                          };
        bar.Foo += 500;

        Assert.That(bar.Foo.Value.Amount, Is.EqualTo(1000));
    }

    private class MyClass
    {
        public MyStruct? Foo { get; set; }
    }

    private struct MyStruct
    {
        public decimal Amount { get; private set; }

        public MyStruct(decimal amount) : this()
        {
            Amount = amount;
        }

        public static MyStruct operator +(MyStruct x, MyStruct y)
        {
            return new MyStruct(x.Amount + y.Amount);
        }

        public static MyStruct operator +(MyStruct x, decimal y)
        {
            return new MyStruct(x.Amount + y);
        }

        public static implicit operator MyStruct(int value)
        {
            return new MyStruct(value);
        }

        public static implicit operator MyStruct(decimal value)
        {
            return new MyStruct(value);
        }
    }
link|flag
My head hurts... Why doesn't this work? – jasonh Jul 13 at 23:44
I second this question - can we get an explanation? – rwmnau Aug 5 at 18:58
1  
Hm i wrote this a few months ago, but I can't remember why exactly it happened. – cbp Aug 6 at 6:50
3  
Looks like a compiler bug; the += 500 calls: ldc.i4 500 (pushes 500 as an Int32), then call valuetype Program/MyStruct Program/MyStruct::op_Addition(valuetype Program/MyStruct, valuetype [mscorlib]System.Decimal) - so it then treats as a decimal (96-bits) without any conversion. If you use += 500M it gets it right. It simply looks like the compiler thinks it can do it one way (presumably due to the implicit int operator) and then decides to do it another way. – Marc Gravell Sep 12 at 10:17
1  
Sorry for the double post, here's a more qualified explanation. I'll add this, I have been bit by this and this it sucks, even though I understand why it happens. To me this is an unfortunate limitation of the struct/valuetype. bytes.com/topic/net/… – Ben Oct 9 at 3:59
show 1 more comment
vote up 22 vote down

Few years ago, when working on loyality program, we had an issue with the amount of points given to customers. The issue was related to casting/converting double to int.

In code below:

double d = 13.6;

int i1 = Convert.ToInt32(d);
int i2 = (int)d;

does i1 == i2 ?

It turns out that i1 != i2. Because of different rounding policies in Convert and cast operator the actual values are:

i1 == 14
i2 == 13

It's always better to call Math.Ceiling() or Math.Floor() (or Math.Round with MidpointRounding that meets our requirements)

int i1 = Convert.ToInt32( Math.Ceiling(d) );
int i2 = (int) Math.Ceiling(d);
link|flag
6  
Casting to an integer doesn't round, it just chops it off (effectively always rounding down). So this makes complete sense. – Max Schmeling May 14 at 17:34
7  
@Max: yes, but why does Convert round? – Stefan Steinegger May 19 at 11:07
@Stefan Steinegger If all it did was cast, there would be no reason for it in the first place, would it? Also note that the class name is Convert not Cast. – bug-a-lot Aug 4 at 13:35
1  
In VB: CInt() rounds. Fix() truncates. Burned me once (blog.wassupy.com/2006/01/…) – Michael Haren Aug 27 at 20:56
vote up 28 vote down

They should have made 0 an integer even when there's an enum function overload.

I knew C# core team rationale for mapping 0 to enum, but still, it is not as orthogonal as it should be. Example from Npgsql.

Test example:

namespace Craft
{
    enum Symbol { Alpha = 1, Beta = 2, Gamma = 3, Delta = 4 };


   class Mate
    {
        static void Main(string[] args)
        {

            JustTest(Symbol.Alpha); // enum
            JustTest(0); // why enum
            JustTest((int)0); // why still enum

            int i = 0;

            JustTest(Convert.ToInt32(0)); // have to use Convert.ToInt32 to convince the compiler to make the call site use the object version

            JustTest(i); // it's ok from down here and below
            JustTest(1);
            JustTest("string");
            JustTest(Guid.NewGuid());
            JustTest(new DataTable());

            Console.ReadLine();
        }

        static void JustTest(Symbol a)
        {
            Console.WriteLine("Enum");
        }

        static void JustTest(object o)
        {
            Console.WriteLine("Object");
        }
    }
}
link|flag
2  
Wow that's a new one for me. Also wierd how ConverTo.ToIn32() works but casting to (int)0 doesn't. And any other number > 0 works. (By "works" I mean call the object overload.) – Lucas Jun 12 at 18:52
vote up 1 vote down

The scoping in c# is truly bizarre at times. Lets me give you one example:

if (true)
{
   OleDbCommand command = SQLServer.CreateCommand();
}

OleDbCommand command = SQLServer.CreateCommand();

This fails to compile, because command is redeclared? There are some interested guesswork as to why it works that way in this thread on stackoverflow and in my blog.

link|flag
8  
I don't view that as particularly bizarre. What you call "perfectly correct code" in your blog is perfectly incorrect according to the language specification. It may be correct in some imaginary language you'd like C# to be, but the language spec is quite clear that in C# it's invalid. – Jon Skeet Jun 26 at 8:48
3  
Well it is valid in C/C++. And since it is C# I would have liked it to still work. What bugs me the most is that there is no reason for the compiler to do this. It's not like it hard to do nested scoping. I guess it all comes down to the element of least suprise. Meaning that it can be that the spec says this and that, but that doesn't really help me very much if it's completely illogical that it behaves that way. – Anders Rune Jensen Jun 26 at 9:08
4  
C# != C/C++. Would you also like to use cout << "Hello World!" << endl; instead of Console.WriteLine("Hello World!");? Also it not illogical, just read the spec. – Lucas McCoy Jun 28 at 18:32
6  
I am speaking about scoping rules which is part of the core of the language. You are speaking about the standard library. But it's now clear to me that I should simply read the tiny specification of c# language before I start programming in it. – Anders Rune Jensen Jun 29 at 16:11
1  
Eric Lippert actually posted the reasons why C# is designed like that recently: blogs.msdn.com/ericlippert/archive/…. The summary is because it's less likely that changes will have unintended consequences. – Helephant Nov 25 at 17:16
show 1 more comment
vote up 13 vote down

Here's one I only found out about recently...

interface IFoo
{
   string Message {get;}
}
...
IFoo obj = new IFoo("abc");
Console.WriteLine(obj.Message);

The above looks crazy at first glance, but is actually legal.No, really (although I've missed out a key part, but it isn't anything hacky like "add a class called IFoo" or "add a using alias to point IFoo at a class").

See if you can figure out why, then: Who says you can’t instantiate an interface?

link|flag
Or indeed read msmvps.com/blogs/jon_skeet/… :) – Jon Skeet Aug 15 at 9:52
vote up 10 vote down

This is one of the most unusual i've seen so far (aside from the ones here of course!):

public class Turtle<T> where T : Turtle<T>
{
}

It lets you declare it but has no real use, since it will always ask you to wrap whatever class you stuff in the center with another Turtle.

[joke] I guess it's turtles all the way down... [/joke]

link|flag
2  
You can create instances, though: class RealTurtle : Turtle<RealTurtle> { } RealTurtle t = new RealTurtle(); – Marc Gravell Aug 26 at 6:55
2  
Indeed. This is the pattern that Java enums use to great effect. I use it in Protocol Buffers too. – Jon Skeet Aug 26 at 7:09
1  
RCIX, oh yes it is. – Joshua Sep 1 at 16:22
3  
I have used this pattern quite a lot in fancy generics stuff. It allows things like a correctly typed clone, or creating instances of itself. – Lucero Sep 10 at 19:31
2  
This is the 'curiously recurring template pattern' en.wikipedia.org/wiki/… – Porges Nov 5 at 19:30
show 4 more comments
vote up 5 vote down

I found a second really strange corner case that beats my first one by a long shot.

String.Equals Method (String, String, StringComparison) is not actually side effect free.

I was working on a block of code that had this on a line by itself at the top of some function:

stringvariable1.Equals(stringvariable2, StringComparison.InvariantCultureIgnoreCase);

Removing that line lead to a stack overflow somewhere else in the program.

The code turned out to be installing a handler for what was in essence a BeforeAssemblyLoad event and trying to do

if (assemblyfilename.EndsWith("someparticular.dll", StringComparison.InvariantCultureIgnoreCase))
{
    assemblyfilename = "someparticular_modified.dll";
}

By now I shouldn't have to tell you. Using a culture that hasn't been used before in a string comparison causes an assembly load. InvariantCulture is not an exception to this.

link|flag
I guess "loading an assembly" is a side effect, since you can observe it with BeforeAssemblyLoad! – Jacob Oct 13 at 20:10
vote up 2 vote down

VB.NET, nullables and the ternary operator:

Dim i As Integer? = If(True, Nothing, 5)

This took me some time to debug, since I expected i to contain Nothing.

What does i really contain? 0.

This is surprising but actually "correct" behavior: Nothing in VB.NET is not exactly the same as null in CLR: Nothing can either mean null or default(T) for a value type T, depending on the context. In the above case, If infers Integer as the common type of Nothing and 5, so, in this case, Nothing means 0.

link|flag
vote up 0 vote down

PropertyInfo.SetValue() can assign ints to enums, ints to nullable ints, enums to nullable enums, but not ints to nullable enums.

enumProperty.SetValue(obj, 1, null); //works
nullableIntProperty.SetValue(obj, 1, null); //works
nullableEnumProperty.SetValue(obj, MyEnum.Foo, null); //works
nullableEnumProperty.SetValue(obj, 1, null); // throws an exception !!!

Full description here

link|flag
vote up 4 vote down

This is one that I like to ask at parties (which is probably why I don't get invited anymore):

Can you make the following piece of code compile?

public void Foo()
    {
        this = new Teaser();
    }

An easy cheat could be:

string cheat = @"
    public void Foo()
    {
        this = new Teaser();
    }
";

But the real solution is this:

public struct Teaser
{
    public void Foo()
    {
        this = new Teaser();
    }
}

So it's a little know fact that value types (structs) can reassign their this variable.

link|flag
vote up 0 vote down

I don't know if the output is really supposed to be the same, but I don't think that the output should be the same either. Is it really designed on c#.net that different instances of random variables produce the same number?

int x = new Random().Next(100);
int y = new Random().Next(100);

Console.WriteLine(x.ToString());
Console.WriteLine(y.ToString());

The same values are printed as everytime I run the code.

Edit: But if i write the code like this:

int x = new Random().Next();
int y = new Random().Next();

Console.WriteLine(x.ToString());
Console.WriteLine(y.ToString());

different values are shown... What must have really happened here?

link|flag
The output should be same, since both randoms use the same seed. The default seed is time-dependent and (most likely) hasn't changed in the meantime. – smiley80 2 days ago
I've also tried running the program, but without any parameter inside Next(). But this one works better (or more appropriate) than the parameterized method. – Jronny 2 days ago

Your Answer

Get an OpenID
or

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