可能重复:
Is there a way to programmatically convert VB6 Formatting strings to .NET Formatting strings?
从vb6迁移到vb.net期间,格式$(1234567,“###,###,###,###”)函数转换为vb6.Format(1234567,“###, ###,###,###“)函数,在Microsoft.Visualbasic.Compatibility.dll中定义。
我不想使用Microsoft.Visualbasic.Compatibility.dll。在.NET中是否有相同的功能。
提前致谢。
答案 0 :(得分:1)
Dim value As Integer = 1234567
value.ToString("###,###,###,###")
的Composite Formatting
String.Format("{0:###,###,###,###}", 1234567)