「C#」StringBuilderの#AppendLineで文字列を行単位で連結する

2022年3月15日

書式
StringBuilder sb = new StringBuilder();
sb.AppendLine(文字列);
System.Text.StringBuilderのAppendLineメソッドを使って文字列を改行コードを挟んで連結します。

使用例

using System;
using System.Text;
namespace TestVal
{
  class Program
  {
    static void Main(string[] args)
    {
     
        //StringBuilderを生成
      StringBuilder sb = new StringBuilder();

       //文字列を追加する
        sb.AppendLine("Windows11");
        sb.AppendLine(" windows10 ");
         sb.AppendLine(" apple ");

        //string型に変換
       string result = sb.ToString();
     
      Console.WriteLine("StringBuilderで文字列を行単位で連結する結果:\n "+result);
     
    }
  }
}

実行結果

StringBuilderで文字列を行単位で連結する結果:
 Windows11
 windows10 
 apple 

 

C#

Posted by arkgame