C#中Strings VS. StringBuilder

 

1 string mappingHandler = String.Format(@"""[name='BTSHTTPReceiveModule',path='BTSHTTPReceive.dll',verb='*',scriptProcessor='%programfiles(x86)%\Microsoft BizTalk Server 2009\HttpReceive64\BTSHTTPReceive.dll',resourceType='Unspecified',modules='IsapiModule',requireAccess='Execute']""");
2 StringBuilder sb = new StringBuilder();
3 sb.AppendFormat(@"%SystemRoot%\system32\inetsrv\appcmd.exe set config {0} /section:handlers /+", "\"AppWeekSite/AppWeek\"");
4 sb.Append(mappingHandler);
5 sb.AppendFormat(@" > {0}\AppCmdOutE2EDeploy.txt", ContextBag.TestDir);
6 Trace.WriteLine(sb.ToString(), TestCaseLogCategory.Info);
7 Exec.ExecuteCommand(sb.ToString());

 

String Class (System) | Microsoft Docs 

https://docs.microsoft.com/en-us/dotnet/api/system.string?view=netframework-4.7.1

 

Strings @MSDN

http://msdn.microsoft.com/en-us/library/ms228362.aspx

 

StringBuilder Class @MSDN

http://msdn.microsoft.com/en-us/library/system.text.stringbuilder.aspx

 

Using the StringBuilder Class @MSDN

http://msdn.microsoft.com/en-us/library/2839d5h5(v=vs.71).aspx 

 

String Vs StringBuilder (C#) @CodeProject

http://www.codeproject.com/KB/string/string.aspx

posted on 2014-10-05 11:01  浩然119  阅读(670)  评论(0编辑  收藏  举报