Hi everyone,<br><br>I've noticed that numerous type conversions in OSSL are not functioning.  Typecasting such as:<br><br>float f = 1.234;<br>string s = (string)f;<br>f = (float)s;<br><br>generates a CS0030 compiler error (cannot convert from 'string' to 'double').  It seems that there are conversion methods from numeric and complex (such as vector) types to string, but not the other way around.<br>
<br>Is this a known issue?  Is there a way to perform these conversions aside from typecasting?<br><br>Thanks!<br>-Eric (Typhoon)<br>