1

假设我有一个字符串:

string  test = "hello world"; 

如何将此字符串转换为字符数组?

4

1 回答 1

2

Use

char[] temp = test.ToCharArray();

于 2013-06-30T06:03:07.523 回答