Skip to content

Instantly share code, notes, and snippets.

View zizi4n5's full-sized avatar
🏠
Working from home

Shingo Takagi zizi4n5

🏠
Working from home
View GitHub Profile
@zizi4n5
zizi4n5 / c#
Last active January 17, 2018 04:05
Swiftで動作している条件式をC#に移植したらハマった話 ref: https://qiita.com/zizi4n5/items/245882a94818b90bb701
float floatValue = float.Parse("6.2");
double doubleValue = double.Parse("6.2");
System.Console.WriteLine($"floatValue={floatValue}");
System.Console.WriteLine($"doubleValue={doubleValue}");
System.Console.WriteLine($"floatValue_cast_double={(double)floatValue}");
System.Console.WriteLine($"doubleValue_cast_float={(float)doubleValue}");
@zizi4n5
zizi4n5 / file0.txt
Last active January 9, 2018 12:20
古いDoxygenを(ムリやり)Homebrewで管理する ref: https://qiita.com/zizi4n5/items/493def56ac798a00bbc2
brew install doxygen