方法 : 複数行のリテラル文字列を生成する (Visual C#)
更新 : 2007 年 11 月
以下のコード例では、複数行のリテラル文字列を構成する 2 とおりの方法を示しています。
使用例
string myString1 = "This is the first line of my string.\n" +
"This is the second line of my string.\n" +
"This is the third line of the string.\n";
string myString2 = @"This is the first line of my string.
This is the second line of my string.
This is the third line of the string.";
コードのコンパイル方法
コードをコピーし、コンソール アプリケーションの Main メソッドに貼り付けます。