英文:
Format(rs.Fields(1), "#,###.00000") to C#
问题
C#:
string result = string.Format("#,###.00000", 12356);
英文:
I'm converting some VBA code from Excel macro into C# and came across with this line of code.
VBA:
Format(12356, "#,###.00000")
How to translate this to C#?
答案1
得分: 1
你可以尝试使用相同格式的 ToString()
。
var numStr = 12356.ToString("#,###.00000");
Console.WriteLine(numStr); //"12,356.00000"
英文:
You can try, ToString()
with same format.
var numStr = 12356.ToString("#,###.00000");
Console.WriteLine(numStr); //"12,356.00000"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论