C# : How does this work : Unit myUnit = 5; - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T06:57:57Z http://stackoverflow.com/feeds/question/200858 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/200858/c-how-does-this-work-unit-myunit-5 12 C# : How does this work : Unit myUnit = 5; cbp http://stackoverflow.com/users/21966 2008-10-14T11:58:49Z 2008-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#200867 2 Answer by Phil Wright for C# : How does this work : Unit myUnit = 5; Phil Wright http://stackoverflow.com/users/6276 2008-10-14T12:02:01Z 2008-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#200881 27 Answer by Marc Gravell for C# : How does this work : Unit myUnit = 5; Marc Gravell http://stackoverflow.com/users/23354 2008-10-14T12:06:10Z 2008-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>