Using generics to cast different user input types - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T15:20:19Zhttp://stackoverflow.com/feeds/question/704514http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/704514/using-generics-to-cast-different-user-input-types1Using generics to cast different user input typesPVR2009-04-01T08:04:36Z2009-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<T>()
{
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<int>();
</code></pre>
<p>or</p>
<pre><code>double price = formB.GetDecodedValue<double>();
</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#7045231Answer by ilivewithian for Using generics to cast different user input typesilivewithian2009-04-01T08:06:39Z2009-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#7045282Answer by Jon Skeet for Using generics to cast different user input typesJon Skeet2009-04-01T08:08:49Z2009-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#7045293Answer by Marc Gravell for Using generics to cast different user input typesMarc Gravell2009-04-01T08:09:10Z2009-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#7045301Answer by REA_ANDREW for Using generics to cast different user input typesREA_ANDREW2009-04-01T08:09:13Z2009-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>