まず、文字配列を宣言し、各文字の値を設定します。
char[] ch = new char[5]; ch[0] = 'H'; ch[1] = 'e'; ch[2] = 'l'; ch[3] = 'l'; ch[4] = 'o';
次に、文字列クラス コンストラクターを使用して、文字列から新しい文字列を作成します。上記の文字の配列 -
string myChar = new string(ch);
C# で文字のリストを文字列に変換するコードを見てみましょう。
ライブ デモ
using System; namespace Demo { class MyApplication { static void Main(string[] args) { char[] ch = new char[5]; ch[0] = 'H'; ch[1] = 'e'; ch[2] = 'l'; ch[3] = 'l'; ch[4] = 'o'; string myChar = new string(ch); Console.WriteLine("Converted to string = {0}", myChar); } } }
Converted to string = Hello
以上が文字のリストを文字列に変換する C# プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。