System::Array::CopyTo मेथड

Array::CopyTo(ArrayPtr<T>, int) method

वर्तमान एरे के सभी तत्वों को निर्दिष्ट गंतव्य एरे में कॉपी करता है। तत्वों को गंतव्य एरे में arrayIndex तर्क द्वारा निर्दिष्ट इंडेक्स से शुरू करके डाला जाता है।

virtual void System::Array<T>::CopyTo(ArrayPtr<T> arr, int arrayIndex) override
पैरामीटरप्रकारविवरण
arrArrayPtr<T>गंतव्य ऐरे
arrayIndexintगंतव्य ऐरे में वह इंडेक्स जहाँ कॉपी किए गए आइटम्स को डालना शुरू किया जाता है

संबंधित देखें

Array::CopyTo(const ArrayPtr<DstType>&, int64_t) const method

वर्तमान एरे के सभी तत्वों को निर्दिष्ट गंतव्य एरे में कॉपी करता है। तत्वों को गंतव्य एरे में dstIndex तर्क द्वारा निर्दिष्ट इंडेक्स से शुरू करके डाला जाता है।

template<typename DstType> void System::Array<T>::CopyTo(const ArrayPtr<DstType> &dstArray, int64_t dstIndex) const
पैरामीटरविवरण
DstTypeगंतव्य ऐरे में तत्वों का प्रकार
पैरामीटरप्रकारविवरण
dstArrayconst ArrayPtr<DstType>&गंतव्य ऐरे
dstIndexint64_tगंतव्य ऐरे में वह इंडेक्स जहाँ कॉपी किए गए आइटम्स को डालना शुरू किया जाता है

संबंधित देखें

Array::CopyTo(const ArrayPtr<DstType>&, int64_t, int64_t, int64_t) const method

निर्दिष्ट स्थिति से शुरू करके वर्तमान एरे से निर्दिष्ट संख्या में तत्वों को निर्दिष्ट गंतव्य एरे में कॉपी करता है। तत्वों को गंतव्य एरे में dstIndex तर्क द्वारा निर्दिष्ट इंडेक्स से शुरू करके डाला जाता है।

template<typename DstType> void System::Array<T>::CopyTo(const ArrayPtr<DstType> &dstArray, int64_t srcIndex, int64_t dstIndex, int64_t count) const
पैरामीटरविवरण
DstTypeगंतव्य ऐरे में तत्वों का प्रकार
पैरामीटरप्रकारविवरण
dstArrayconst ArrayPtr<DstType>&गंतव्य ऐरे
srcIndexint64_tस्रोत ऐरे में वह इंडेक्स जहाँ से आइटम्स को कॉपी करना शुरू किया जाता है
dstIndexint64_tगंतव्य ऐरे में वह इंडेक्स जहाँ कॉपी किए गए आइटम्स को डालना शुरू किया जाता है
countint64_tकॉपी करने के लिए तत्वों की संख्या

संबंधित देखें

Array::CopyTo(const System::Details::ArrayView<DstType>&, int64_t) const method

वर्तमान एरे के सभी तत्वों को निर्दिष्ट गंतव्य एरे व्यू में कॉपी करता है। तत्वों को गंतव्य एरे व्यू में dstIndex तर्क द्वारा निर्दिष्ट इंडेक्स से शुरू करके डाला जाता है।

template<typename DstType> void System::Array<T>::CopyTo(const System::Details::ArrayView<DstType> &dstArray, int64_t dstIndex) const
पैरामीटरविवरण
DstTypeगंतव्य एरे व्यू में तत्वों का प्रकार
पैरामीटरप्रकारविवरण
dstArrayconst System::Details::ArrayView<DstType>&गंतव्य एरे व्यू
dstIndexint64_tगंतव्य एरे व्यू में वह सूचकांक जहाँ से कॉपी किए गए आइटम डालना शुरू करना है

संबंधित देखें

Array::CopyTo(const System::Details::ArrayView<DstType>&, int64_t, int64_t, int64_t) const method

निर्दिष्ट स्थिति से शुरू करके वर्तमान एरे से निर्दिष्ट संख्या में तत्वों को निर्दिष्ट गंतव्य एरे व्यू में कॉपी करता है। तत्वों को गंतव्य एरे व्यू में dstIndex तर्क द्वारा निर्दिष्ट इंडेक्स से शुरू करके डाला जाता है।

template<typename DstType> void System::Array<T>::CopyTo(const System::Details::ArrayView<DstType> &dstArray, int64_t srcIndex, int64_t dstIndex, int64_t count) const
पैरामीटरविवरण
DstTypeगंतव्य एरे व्यू में तत्वों का प्रकार
पैरामीटरप्रकारविवरण
dstArrayconst System::Details::ArrayView<DstType>&गंतव्य एरे व्यू
srcIndexint64_tस्रोत ऐरे में वह इंडेक्स जहाँ से आइटम्स को कॉपी करना शुरू किया जाता है
dstIndexint64_tगंतव्य एरे व्यू में वह सूचकांक जहाँ से कॉपी किए गए आइटम डालना शुरू करना है
countint64_tकॉपी करने के लिए तत्वों की संख्या

संबंधित देखें