asp.net String.format中大括号的加入方法
时间:2021-05-09 07:44:04|栏目:.NET代码|点击: 次
复制代码 代码如下:
String.Format("{0} world!","hello") //将输出 hello world!,没有问题,但是只要在第一个参数的任意位置加上一个大括号:
String.Format("{0} wo{rld!","hello") //就会产生一个异常,异常信息是:Input string was not in a correct format.
//解决办法:String.Format("{0} wo{{rld!","hello")
//or
String.Format("{0} wo{1}rld!","hello","{")
//它们都将输出 hello wo{rld!
上一篇:C# MVC 使用LayUI实现下拉框二级联动的功能
栏 目:.NET代码
下一篇:C#和lua相互调用的方法教程
本文标题:asp.net String.format中大括号的加入方法
本文地址:http://www.codeinn.net/misctech/117765.html






