Mark method as unsafe to pointers : Unsafe : Unsafe C# Examples


C# Examples » Unsafe » Unsafe »

 

Mark method as unsafe to pointers









    
using  System;  
  
class  UnsafeCode  {  

    unsafe  public  static  void  Main()  {  
        int  count  =  99;  
        int*  p;  //  create  an  int  pointer  
  
        p  =  &count;  //  put  address  of  count  into  p  
  
        Console.WriteLine("Initial  value  of  count  is  "  +  *p);  
  
        *p  =  10;  //  assign  10  to  count  via  p  
          
        Console.WriteLine("New  value  of  count  is  "  +  *p);  
    }  
}
    
   
  
   



Output

Initial value of count is 99
New value of count is 10


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Unsafe
» Unsafe