本文介绍了在不使用 Microsoft.Visualbasic.Compatibility.dll 的情况下,相当于 vb.net 中的 vb6.Format 函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能的重复:
有没有办法以编程方式将 VB6 格式化字符串转换为 .NET 格式化字符串?

在从 vb6 迁移到 vb.net 期间,Format$(1234567, "###,###,###,###") 函数被转换为 vb6.Format(1234567,"###,###,###,###") 函数,在 Microsoft.Visualbasic.Compatibility.dll 中定义.

during migration from vb6 to vb.net the Format$(1234567, "###,###,###,###") function is converted to vb6.Format(1234567,"###,###,###,###") function, which is defined in Microsoft.Visualbasic.Compatibility.dll.

我不想使用 Microsoft.Visualbasic.Compatibility.dll.在 .NET 中是否有任何等价物.

I dont want to use Microsoft.Visualbasic.Compatibility.dll. Is there any equivalent for this in .NET.

提前致谢.

推荐答案

您可以使用 .ToString(string)方法

Dim value As Integer = 1234567
value.ToString("###,###,###,###")

String.Format 方法 使用 复合格式

String.Format("{0:###,###,###,###}", 1234567)

这篇关于在不使用 Microsoft.Visualbasic.Compatibility.dll 的情况下,相当于 vb.net 中的 vb6.Format 函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 15:17