String.Format 方法

命名空间:

System

程序集:

System.Runtime.dll

将对象的值转换为基于指定格式的字符串,并将其插入到另一个字符串。

开始处理字符串. 格式方法

如果需要将对象、变量或表达式的值插入到另一个字符串,请使用 String.Format。 例如,你可以将 Decimal 值的值插入字符串中,以单个字符串的形式向用户显示该值:

Decimal pricePerOunce = 17.36m;
String s = String.Format("The current price is {0} per ounce.",
                         pricePerOunce);
Console.WriteLine(s);
// Result: The current price is 17.36 per ounce.

图书管理系统实例:

string.Format($"修改")

出现$可以将后一个参数直接填入{}中,即这里的bokView.BookID。

 

你可能感兴趣的:(其他,.net,c#)