Using generics to cast different user input types - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T15:20:19Z http://stackoverflow.com/feeds/question/704514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/704514/using-generics-to-cast-different-user-input-types 1 Using generics to cast different user input types PVR 2009-04-01T08:04:36Z 2009-04-01T08:09:13Z <p>I have a windows application that allows input from pen input on tablet machine.</p> <p>When required a form (A) will open another form (B) to allow user input.</p> <p>In form (B) I have the following function to return the decoded value that the user inputs with pen.</p> <pre><code>private object decodedValue; public T GetDecodedValue&lt;T&gt;() { return (T)decodedValue; } </code></pre> <p>When the user enters a value, in form B, I store the result as follows</p> <pre><code>string sResult = myInkCollector.Ink.Strokes.ToString(); decodedValue = (object)sResult; </code></pre> <p>Now in form A there are two fields required that allow data input, one is for Quantity (int) and the other is Price (double). I want to allow form B to accommodate the different types hence that is why I am using generics.</p> <p>So when form B is accepted, it will return to form A and use the following code</p> <pre><code>int qty = formB.GetDecodedValue&lt;int&gt;(); </code></pre> <p>or</p> <pre><code>double price = formB.GetDecodedValue&lt;double&gt;(); </code></pre> <p>This is where the error occurs, when the function 'formB.GetDecodedValue' is called it raises an InvalidCastException at</p> <pre><code>return (T)decodedValue; </code></pre> <p>Any ideas on what I am doing wrong? I am over complicating things by using generics?</p> http://stackoverflow.com/questions/704514/using-generics-to-cast-different-user-input-types/704523#704523 1 Answer by ilivewithian for Using generics to cast different user input types ilivewithian 2009-04-01T08:06:39Z 2009-04-01T08:06:39Z <p>You can't cast a string to an int, or a double, you need to use int.Parse or double.Parse.</p> http://stackoverflow.com/questions/704514/using-generics-to-cast-different-user-input-types/704528#704528 2 Answer by Jon Skeet for Using generics to cast different user input types Jon Skeet 2009-04-01T08:08:49Z 2009-04-01T08:08:49Z <p>I don't think using generics here is cleaner than just doing the cast from form A, but that's not the problem. The problem is that the value being returned isn't of the right type. It's a string, and you can't cast from <code>string</code> to <code>int</code> or <code>double</code>. Assuming you actually want to parse it, you should return a string from form B and form A should use <a href="http://msdn.microsoft.com/en-us/library/system.int32.tryparse.aspx" rel="nofollow"><code>int.TryParse</code></a> or <a href="http://msdn.microsoft.com/en-us/library/system.double.tryparse.aspx" rel="nofollow"><code>double.TryParse</code></a>, handling user input error appropriately.</p> <p>(This is assuming that <code>Ink.Strokes.ToString()</code> returns text such as "5" or "10.50" - it's not immediately clear to me that that's the case.)</p> http://stackoverflow.com/questions/704514/using-generics-to-cast-different-user-input-types/704529#704529 3 Answer by Marc Gravell for Using generics to cast different user input types Marc Gravell 2009-04-01T08:09:10Z 2009-04-01T08:09:10Z <p><code>TypeConverter</code> may be your best bet:</p> <pre><code>return (T)TypeDescriptor.GetConverter(typeof(T)).ConvertFrom(decodedValue); </code></pre> <p>This will often work with <code>string</code> values - beyond that... hit'n'miss.</p> <p>There is also:</p> <pre><code>return (T)Convert.ChangeType(decodedValue, typeof(T)); </code></pre> <p>which works differently; try both ;-p</p> http://stackoverflow.com/questions/704514/using-generics-to-cast-different-user-input-types/704530#704530 1 Answer by REA_ANDREW for Using generics to cast different user input types REA_ANDREW 2009-04-01T08:09:13Z 2009-04-01T08:09:13Z <p>Try this:</p> <pre><code>return (T)Convert.ChangeType(decodedValue, typeof(T)); </code></pre> <p>You cannot implicitly cast an int to a string for example you must convert. This tool is handy and I have used it for a few things.</p> <p>Try it out.</p> <p>Andrew</p>