首頁 > 後端開發 > C#.Net教程 > C#程式將字元清單轉換為字串

C#程式將字元清單轉換為字串

PHPz
發布: 2023-08-22 11:08:38
轉載
922 人瀏覽過

C#程式將字元清單轉換為字串

首先,宣告字元陣列並設定每個字元的值−

char[] ch = new char[5];

ch[0] = 'H';
ch[1] = 'e';
ch[2] = 'l';
ch[3] = 'l';
ch[4] = 'o';
登入後複製

Now, use the string class constructor and create a new string from the above array of characters −

string myChar = new string(ch);
登入後複製

Example

Let us see the code to convert a list of characters to string in C#.

Live Demo

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);
      }
   }
}
登入後複製

#Output

Converted to string = Hello
登入後複製

以上是C#程式將字元清單轉換為字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板