You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/nanoFramework.CoreLibrary/System/Array.cs
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,15 +26,19 @@ public abstract class Array : ICloneable, IList
26
26
/// <para>Reference-type elements are initialized to nullNothingnullptrunit a null reference(Nothing in Visual Basic). Value-type elements are initialized to zero.</para>
27
27
/// <para>This method is an O(n) operation, where n is length.</para></remarks>
28
28
[MethodImpl(MethodImplOptions.InternalCall)]
29
+
#pragma warning disable S4200// Native methods should be wrapped
#pragma warning restore S4200// Native methods should be wrapped
30
32
33
+
#pragma warning disable S4200// Native methods should be wrapped
31
34
/// <summary>
32
35
/// Copies a range of elements from an Array starting at the first element and pastes them into another Array starting at the first element. The length is specified as a 32-bit integer.
33
36
/// </summary>
34
37
/// <param name="sourceArray">The Array that contains the data to copy.</param>
35
38
/// <param name="destinationArray">The Array that receives the data.</param>
36
39
/// <param name="length">A 32-bit integer that represents the number of elements to copy.</param>
0 commit comments