Skip to content

Instantly share code, notes, and snippets.

@Snegovikufa
Last active December 24, 2015 21:09
Show Gist options
  • Save Snegovikufa/6863006 to your computer and use it in GitHub Desktop.
Save Snegovikufa/6863006 to your computer and use it in GitHub Desktop.
private float? ParseFloat(string floatLike)
{
float f;
if (float.TryParse(floatLike, NumberStyles.Float, CultureInfo.InvariantCulture, out f)) {
return f;
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment