Skip to content

Instantly share code, notes, and snippets.

@takashicompany
Created October 16, 2014 01:21
Show Gist options
  • Save takashicompany/abde59113341447afe2a to your computer and use it in GitHub Desktop.
Save takashicompany/abde59113341447afe2a to your computer and use it in GitHub Desktop.
float test0 = 2.4f;
float test1 = 2.49999f;
float test2 = 2.5f;
float test3 = 2.51f;
float test4 = 3f;
string result = string.Format(
"test0:{0}\ntest1:{1}\ntest2:{2}\ntest3:{3}\ntest4:{4}"
,
test0.ToString("0.#"), // 結果:2.4
test1.ToString("0.#"), // 結果:2.5
test2.ToString("0.#"), // 結果:2.5
test3.ToString("0.#"), // 結果:2.5
test4.ToString("0.#") // 結果:3
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment