2010-07-12 123 views

回答

0

Array.Copy

(但要注意,它會在幕後進行循環,就這樣最佳)。

Example

+0

lol ...在你做完51之前剛剛找到了它......我喜歡這個功能,但是我更喜歡循環,因爲我可以解決它們的需求。 – 2010-07-12 05:06:38

-1
// 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);

+3

這是用C++編寫的,而不是C#。 – 2010-07-12 05:08:03

+0

對不起,快速審查....雖然類似的解決方案和性質。 – 2010-07-12 05:34:45

相關問題