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

PHPz
发布: 2023-08-22 11:08:38
转载
882 人浏览过

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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板