.net(C#)中String.Format如何使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.net(C#)中String.Format如何使用相关的知识,希望对你有一定的参考价值。

参考技术A 说明:
String.Format
将指定的 String 中的每个格式项替换为相应对象的值的文本等效项。

例子:

int iVisit = 100;
string szName = "Jackfled";
Response.Write(String.Format("您的帐号是:0 。访问了 1 次.", szName, iVisit));本回答被提问者采纳

以上是关于.net(C#)中String.Format如何使用的主要内容,如果未能解决你的问题,请参考以下文章

如何在 C# 中的 string.Format 中进行对齐?

C# String.Format 等价于带有自定义格式化程序的 JS

在 C# ASP.NET 视图中,如何在逗号后换行数字?

C# String.Format大全 去 decimal 后面的 0

C#中string.Format 用法详解

C#中string.format用法详解 [转载]