Skip to content

Instantly share code, notes, and snippets.

@baobao
Created August 24, 2014 14:28
Show Gist options
  • Save baobao/3d2a3985f98b7445bde4 to your computer and use it in GitHub Desktop.
Save baobao/3d2a3985f98b7445bde4 to your computer and use it in GitHub Desktop.
public static bool TryParse (string s, out float result)
{
return float.TryParse (s, NumberStyles.Any, , out result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment