Skip to content

Instantly share code, notes, and snippets.

@rje
Created December 4, 2014 23:17
Show Gist options
  • Save rje/9d39a63a2be285846060 to your computer and use it in GitHub Desktop.
Save rje/9d39a63a2be285846060 to your computer and use it in GitHub Desktop.
double parse test
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