Address of array
Hi,
Could you help me to get the address of the, lets say, integer array and write it out to the console screen. How I can do it in pure C# or using .NET Framework?
Example:
public int[] a = new int[10];
...
Console.WriteLine("Address of a is ?", ?);
Thank you in advance

