Declaring a Pointer : Pointer : Unsafe C# Examples


C# Examples » Unsafe » Pointer »

 

Declaring a Pointer





The general form of a pointer variable declaration is




    
type*  var-name;  

int*  ip;
    
   
  
   

For a float pointer, use




    
float*  fp;
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Unsafe
» Pointer