Created
October 16, 2014 01:21
-
-
Save takashicompany/abde59113341447afe2a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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