An array name with an index yields a pointer to the start of the array : Pointer : Unsafe C# Examples


C# Examples » Unsafe » Pointer »

 

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









    
using  System;  
  
class  MainClass{  
    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.");  
        }  
    }  
}
    
   
  
   



Output

p and p2 point to same address.


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Unsafe
» Pointer