An array name with an index yields a pointer to the start of the array : Pointer Unsafe « Language Basics « C# / C Sharp






An array name with an index yields a pointer to the start of the array

An array name with an index yields a pointer to the 
   start of the array
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/


/* An array name with an index yields a pointer to the 
   start of the array. */ 
 
using System; 
 
public class PtrArray { 
  unsafe public static void Main() { 
    int[] nums = new int[10]; 
 
    fixed(int* p = &nums[0], p2 = nums) { 
      if(p == p2) 
        Console.WriteLine("p and p2 point to same address."); 
    } 
  } 
}


           
       








Related examples in the same category

1.References and Pointers
2.Demonstrate pointers and unsafeDemonstrate pointers and unsafe
3.Demonstrate fixedDemonstrate fixed
4.Demonstrate the effects of pointer arithmethicDemonstrate the effects of pointer arithmethic
5.Demonstrate pointer comparisonDemonstrate pointer comparison
6.Index a pointer as if it were an arrayIndex a pointer as if it were an array
7.Use fixed to get a pointer to the start of a stringUse fixed to get a pointer to the start of a string
8.Multiple IndirectMultiple Indirect
9.Unsafe code: copyUnsafe code: copy
10.Pointers and Declarative Pinning
11.Unsafe ContextUnsafe Context