stringbuilder.appendformat(); 有什么用?在 asp.net c# 中?

发布于 2024-11-07 01:43:43 字数 255 浏览 0 评论 0原文

foreach (string item in sc)
{
    const string sqlStatement = "Delete From tablename Where field";
    stringbuilder.AppendFormat("{0}='{1}'; ", sqlStatemnt, item);
}

我想知道 stringbuilder.appendformat() 到底是做什么的?

foreach (string item in sc)
{
    const string sqlStatement = "Delete From tablename Where field";
    stringbuilder.AppendFormat("{0}='{1}'; ", sqlStatemnt, item);
}

I want to know tht what stringbuilder.appendformat() exactly does?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画离情绘悲伤 2024-11-14 01:43:43

您可以使用它来代替以下方法:

sb.append(String.Format("{0} = {1}", a, b));

强烈建议使用 Format 方法,因为它可以使代码保持干净且易于阅读。

它可以大大减少阅读量,还有助于格式化不同的类型,例如(取自 http://msdn.microsoft.com/en-us/library/b1csw23d.aspx

  DateTime date1 = new DateTime(2009, 7, 1);
  TimeSpan hiTime = new TimeSpan(14, 17, 32);
  decimal hiTemp = 62.1m; 
  TimeSpan loTime = new TimeSpan(3, 16, 10);
  decimal loTemp = 54.8m; 

  string result1 = String.Format("Temperature on {0:d}:\n{1,11}: {2} degrees (hi)\n{3,11}: {4} degrees (lo)", date1, hiTime, hiTemp, loTime, loTemp);

you can use it instead of the following:

sb.append(String.Format("{0} = {1}", a, b));

its very recommended to use Format methods because its keeps the code clean and very readable .

it can reduce the reading drastically and also help to format different types, for example (taken from http://msdn.microsoft.com/en-us/library/b1csw23d.aspx)

  DateTime date1 = new DateTime(2009, 7, 1);
  TimeSpan hiTime = new TimeSpan(14, 17, 32);
  decimal hiTemp = 62.1m; 
  TimeSpan loTime = new TimeSpan(3, 16, 10);
  decimal loTemp = 54.8m; 

  string result1 = String.Format("Temperature on {0:d}:\n{1,11}: {2} degrees (hi)\n{3,11}: {4} degrees (lo)", date1, hiTime, hiTemp, loTime, loTemp);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文