可能重複:
How to copy part of an array to another array in C#?複製的陣列的一部分到另一陣列
,如果我有:
string[] myArray = . . . .
這與長度爲10的數組。我怎麼能創建一個新的字符串數組是第一個數組的第二到第十個元素沒有循環?
可能重複:
How to copy part of an array to another array in C#?複製的陣列的一部分到另一陣列
,如果我有:
string[] myArray = . . . .
這與長度爲10的數組。我怎麼能創建一個新的字符串數組是第一個數組的第二到第十個元素沒有循環?
string[] myArray = ....
string[] copy = new string[10];
Array.Copy(myArray, 2, copy, 0, 10);
// Copies the last two elements from the Object array to the Int32 array.
Array::Copy(myObjArray, myObjArray->GetUpperBound(0) - 1, myIntArray, myIntArray->GetUpperBound(0) - 1,
查找:http://msdn.microsoft.com/en-us/library/system.array.copy%28VS.71%29.aspx
Array.Copy(myIntArray,myIntArray.GetLowerBound(0),myObjArray,myObjArray.GetLowerBound(0),1);
這是用C++編寫的,而不是C#。 – 2010-07-12 05:08:03
對不起,快速審查....雖然類似的解決方案和性質。 – 2010-07-12 05:34:45
lol ...在你做完51之前剛剛找到了它......我喜歡這個功能,但是我更喜歡循環,因爲我可以解決它們的需求。 – 2010-07-12 05:06:38