标签: arrays string c#-4.0
假设我有一个字符串:
string test = "hello world";
如何将此字符串转换为字符数组?
答案 0 :(得分:2)
使用
char [] temp = test.ToCharArray();