Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does Array.Clear actually do under the covers?

I'm looking for a answer to what the Array.Clear(...) method does under the covers in C#.

I've looked at the IL, but that isn't really yielding any clues, since it simply calls the System.Array::Clear(...) method in mscorlib, which then calls an unmanaged portion of the CLR that I can't observe.

The reason why I am asking this, is that I am occasionally getting an SEHException thrown by my call to Array.Clear, and I can't seem to figure out why it is happening.

Unfortunately, Microsoft seems to be a little tight-lipped about what it might mean when the exception is thrown...

From: http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.sehexception(v=VS.100).aspx

Any SEH exception that is not automatically mapped to a specific exception is mapped to the SEHException class by default. For more information, search on "unmanaged exceptions" and "Structured Exception Handling" in the MSDN Library.

like image 309
Aron Avatar asked Apr 05 '11 19:04

Aron


1 Answers

It's easiest to envision Array.Clear being written like so

public static void Array.Clear<T>(T[] array) {
  for (int i = 0; i < array.Length; i++) {
    array[i] = default(T);
  }
}

I realize Array.Clear is not actually a generic method, i'm trying to demonstrate a close mapping of what's going on under the hood. Really though it's closer to

memcopy(&array, 0, array.Length * sizeof(T));

If this code is throwing an SEHException then the most likely cause is the memory around the source array is corrupted. The most likely source is an incorrect PInvoke or COM interop call.

like image 78
JaredPar Avatar answered Sep 22 '22 21:09

JaredPar