C#程序将字符列表转换为字符串

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);登录后复制