将字符型char数组转换为string字符串
char[] chars = { 'h', 'e', 'l', 'l', 'o' }; string str = new string(chars); // "hello"