System::Runtime::InteropServices::Marshal::Copy मेथड
Marshal::Copy(const container&, int, IntPtr, int) method
public static void Copy(char[] source, int startIndex, IntPtr destination, int length) को लागू करता है।
template<typename container> static void System::Runtime::InteropServices::Marshal::Copy(const container &source, int startIndex, IntPtr destination, int length)
| पैरामीटर | विवरण |
|---|
| कंटेनर | स्रोत कंटेनर प्रकार। |
| पैरामीटर | प्रकार | विवरण |
|---|
| स्रोत | const container& | स्रोत डेटा पॉइंटर। |
| startIndex | int | स्रोत प्रारंभ इंडेक्स। |
| destination | IntPtr | गंतव्य डेटा पॉइंटर। |
| length | int | कॉपी करने के तत्वों की संख्या। |
संबंधित देखें
Marshal::Copy(const container&, int, void *, int) method
public static void Copy(char[] source, int startIndex, IntPtr destination, int length) को लागू करता है।
template<typename container> static void System::Runtime::InteropServices::Marshal::Copy(const container &source, int startIndex, void *destination, int length)
| पैरामीटर | विवरण |
|---|
| कंटेनर | स्रोत कंटेनर प्रकार। |
| पैरामीटर | प्रकार | विवरण |
|---|
| स्रोत | const container& | स्रोत डेटा पॉइंटर। |
| startIndex | int | स्रोत प्रारंभ इंडेक्स। |
| destination | void * | गंतव्य डेटा पॉइंटर। |
| length | int | कॉपी करने के तत्वों की संख्या। |
संबंधित देखें
Marshal::Copy(const IntPtr, container&&, int, int) method
public static void Copy(IntPtr source, byte[] destination, int startIndex, int length) सेमांटिक्स को लागू करता है।
template<typename container> static void System::Runtime::InteropServices::Marshal::Copy(const IntPtr source, container &&destination, int startIndex, int length)
| पैरामीटर | विवरण |
|---|
| कंटेनर | गंतव्य कंटेनर प्रकार। |
| पैरामीटर | प्रकार | विवरण |
|---|
| स्रोत | const IntPtr | स्रोत डेटा पॉइंटर। |
| destination | container&& | डेटा कॉपी करने के लिए कंटेनर। |
| startIndex | int | स्रोत प्रारंभ इंडेक्स। |
| length | int | कॉपी करने के तत्वों की संख्या। |
संबंधित देखें
Marshal::Copy(const void *, container&&, int, int) method
public static void Copy(IntPtr source, byte[] destination, int startIndex, int length) सेमांटिक्स को लागू करता है।
template<typename container> static void System::Runtime::InteropServices::Marshal::Copy(const void *source, container &&destination, int startIndex, int length)
| पैरामीटर | विवरण |
|---|
| कंटेनर | गंतव्य कंटेनर प्रकार। |
| पैरामीटर | प्रकार | विवरण |
|---|
| स्रोत | const void * | स्रोत डेटा पॉइंटर। |
| destination | container&& | डेटा कॉपी करने के लिए कंटेनर। |
| startIndex | int | स्रोत प्रारंभ इंडेक्स। |
| length | int | कॉपी करने के तत्वों की संख्या। |
संबंधित देखें