首页 > 代码库 > C#中Strings VS. StringBuilder

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());

 

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

C#中Strings VS. StringBuilder