C# : How does this work : Unit myUnit = 5; - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T06:57:57Zhttp://stackoverflow.com/feeds/question/200858http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/200858/c-how-does-this-work-unit-myunit-512C# : How does this work : Unit myUnit = 5;cbphttp://stackoverflow.com/users/219662008-10-14T11:58:49Z2008-10-14T13:28:33Z
<p>I just noticed that you can do this in C#:</p>
<pre><code>Unit myUnit = 5;
</code></pre>
<p>instead of having to do this:</p>
<pre><code>Unit myUnit = new Unit(5);
</code></pre>
<p>Does anyone know how I can achieve this with my own structs? I had a look at the Unit struct with reflector and noticed the TypeConverter attribute was being used, but after I created a custom TypeConverter for my struct I still couldn't get the compiler to allow this convenient syntax.</p>
http://stackoverflow.com/questions/200858/c-how-does-this-work-unit-myunit-5/200867#2008672Answer by Phil Wright for C# : How does this work : Unit myUnit = 5;Phil Wrighthttp://stackoverflow.com/users/62762008-10-14T12:02:01Z2008-10-14T12:02:01Z<p>You need to provide a cast operator for the class that takes an Int32.</p>
http://stackoverflow.com/questions/200858/c-how-does-this-work-unit-myunit-5/200881#20088127Answer by Marc Gravell for C# : How does this work : Unit myUnit = 5;Marc Gravellhttp://stackoverflow.com/users/233542008-10-14T12:06:10Z2008-10-14T13:28:33Z<p>You need to provide an implicit conversion operator from int to Unit, like so:</p>
<pre><code> public struct Unit
{ // the conversion operator...
public static implicit operator Unit(int value)
{
return new Unit(value);
}
// the boring stuff...
private readonly int value;
public int Value { get { return value; } }
public Unit(int value) { this.value = value; }
}
</code></pre>