Created
December 4, 2014 23:17
-
-
Save rje/9d39a63a2be285846060 to your computer and use it in GitHub Desktop.
double parse test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
double val; | |
var succeeded = double.TryParse("1.05", out val); | |
Debug.Log("Did parse succeed? " + succeeded + " parsed value is: " + val); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment