太離譜了吧
即使(不可能)成功也是把string[0]和[1]的第一個字符copy到char[0]和[1]
打错了,我重新编辑帖子了。
string[] strSource=new string[2];
strSource[0]= "changedqwer";
strSource[0] = strSource[0].PadLeft(16);
char[] temp = new char[16];
Console.WriteLine(strSource[0]);
Console.WriteLine(strSource[0].Length);
Console.WriteLine();
Console.WriteLine(temp.Rank);
Array.Copy(strSource, temp, 16);
Console.WriteLine(temp);
即使是这样,还是那个错误。