我无法使用 netMF4.3 中的double.ToString()来使格式正常工作。还有int.ToString("format")
我希望格式化一个带有3个前导零和没有小数位的双精度型。就此而言,任何数量的前导零。这是我的代码。
double myDouble = 23.2;
string myString = myDouble.ToString("000"); // I've tried other formats
// Expected Result : "023"
未处理的类型' System.ArgumentException'发生在 mscorlib.dll中
我已阅读文档here和here以及here,但在尝试任何格式化字符串时出现System.ArgumentException。
此代码在模拟器中有效,但在实际设备上部署时似乎不起作用。