In another question I asked, a comment arose indicating that the .NET framework's Array.Copy
method uses unmanaged code. I went digging with Reflector and found the signature one of the Array.Copy
method overloads is defined as so:
[MethodImpl(MethodImplOptions.InternalCall), ReliabilityContract(Consistency.MayCorruptInstance, Cer.MayFail)]
internal static extern void Copy(Array sourceArray, int sourceIndex, Array destinationArray, int destinationIndex, int length, bool reliable);
After looking at this, I'm slightly confused. The source of my confusion is the extern
modifier which means (MSDN link):
The extern modifier is used to declare a method that is implemented externally.
However, the method declaration is also decorated with a MethodImplOptions.InternalCall
attribute, which indicates (MSDN link):
Specifies an internal call. An internal call is a call to a method that is implemented within the common language runtime itself.
Can anyone explain this seemingly apparent contradiction?
See Question&Answers more detail:os