C#: Cast a object to a unsigned number type using Generics - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T18:07:57Z http://stackoverflow.com/feeds/question/773971 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/773971/c-cast-a-object-to-a-unsigned-number-type-using-generics 1 C#: Cast a object to a unsigned number type using Generics Andres 2009-04-21T18:33:51Z 2009-04-21T18:46:10Z <p>Hello guys, I'm trying to write some code to convert data from a object type field (come from a DataSet) into it's destination (typed) fields. I'm doing (trying at least) it using dynamic conversion. It seems to work fine for strings, int, DateTime. </p> <p>But it doesn't work for unsigned types (ulong, uint). Below there's a simple code that shows what I want to do. If you change the ul var type from ulong to int, it works fine. </p> <p>Does anybody have a clue?</p> <pre><code>public class console { public static void CastIt&lt;T&gt;(object value, out T target) { target = (T) value; } public static void Main() { ulong ul; string str; int i; DateTime dt; object ul_o = (object) 2; object str_o = (object) "This is a string"; object i_o = (object)1; object dt_o = (object) DateTime.Now; Console.WriteLine("Cast"); CastIt(ul_o, out ul); CastIt(str_o, out str); CastIt(i_o, out i); CastIt(dt_o, out dt); Console.WriteLine(ul); Console.WriteLine(str); Console.WriteLine(i); Console.WriteLine(dt.ToString()); } } </code></pre> http://stackoverflow.com/questions/773971/c-cast-a-object-to-a-unsigned-number-type-using-generics/773998#773998 0 Answer by Andrew Hare for C#: Cast a object to a unsigned number type using Generics Andrew Hare 2009-04-21T18:39:20Z 2009-04-21T18:39:20Z <p>The CLR does not allow you to cast this way because your boxed value type is in fact an int:</p> <pre><code>object ul_o = (object)2; </code></pre> <p>When you are attempting to cast to a <code>ulong</code> you cannot because you cannot unbox an <code>int</code> directly into a <code>ulong</code>.</p> http://stackoverflow.com/questions/773971/c-cast-a-object-to-a-unsigned-number-type-using-generics/774000#774000 2 Answer by Adam Robinson for C#: Cast a object to a unsigned number type using Generics Adam Robinson 2009-04-21T18:39:28Z 2009-04-21T18:39:28Z <p>That's because your ul_o object is an int, not an unsigned number. When you're in your casting function, you're casting while having the target data in the context of an <code>object</code>. Explicit/implicit cast operators (which is what you'd need to be using) only work when you have the object in the context of a type that implements them (since those operators are statically linked at compile time rather than dynamically at runtime).</p> <p>If this is really what you want to do, instead of just a straight cast, use this:</p> <pre><code>target = (T)Convert.ChangeType(value, typeof(T)); </code></pre> http://stackoverflow.com/questions/773971/c-cast-a-object-to-a-unsigned-number-type-using-generics/774011#774011 6 Answer by Jon Skeet for C#: Cast a object to a unsigned number type using Generics Jon Skeet 2009-04-21T18:42:23Z 2009-04-21T18:42:23Z <p>As Andrew says, the problem is that you can't unbox from a boxed <code>int</code> to <code>ulong</code>.</p> <p>Two options:</p> <p>1) Box a <code>ulong</code> instead:</p> <pre><code>object ul_o = (object) 2UL; </code></pre> <p>or</p> <pre><code>ulong tmp = 2; object ul_o = tmp; </code></pre> <p>2) Make <code>CastIt&lt;T&gt;</code> use <code>Convert.ChangeType</code>:</p> <pre><code>public static void CastIt&lt;T&gt;(object value, out T target) { target = (T) Convert.ChangeType(value, typeof(T)); } </code></pre> <p>This is a bit smelly, but works with your example code. If you can use the first way in your real code, that would be better.</p> http://stackoverflow.com/questions/773971/c-cast-a-object-to-a-unsigned-number-type-using-generics/774020#774020 0 Answer by JP for C#: Cast a object to a unsigned number type using Generics JP 2009-04-21T18:44:35Z 2009-04-21T18:44:35Z <p>I think what you want is more like (untested, but directionally correct) ...</p> <pre><code>public static void CastIt&lt;T&gt;( object value ) where T : IConvertable { return ( T )Convert.ChangeType( value , typeof( T ) ); } </code></pre> <p>Edit: Scooped by Skeet! :)</p> http://stackoverflow.com/questions/773971/c-cast-a-object-to-a-unsigned-number-type-using-generics/774028#774028 0 Answer by Chris Shaffer for C#: Cast a object to a unsigned number type using Generics Chris Shaffer 2009-04-21T18:46:10Z 2009-04-21T18:46:10Z <p>This is not really an answer to your question; Just wanted to mention that if you are using .Net 3.5, the <a href="http://blogs.msdn.com/adonet/archive/2007/01/26/querying-datasets-introduction-to-linq-to-dataset.aspx" rel="nofollow">Linq to DataSets</a> code includes functionality like what you are implementing. The specific extension method would be Field&lt;T>() on the DataRow class.</p>