int pointer variable : Unsafe Code « Language Basics « C# / C Sharp






int pointer variable

  

using System;
public class MainClass {
    static void Main(string[] args) {
        unsafe {
            int variable = 10;
            int* pVariable = &variable;
            Console.WriteLine("Value at address is {0}.", *pVariable);
        }
    }
}

   
  








Related examples in the same category

1.Unsafe Methods
2.Accessing Structure Members with a Pointer
3.Supported sizeof() Types
4.Fixing Managed Data in Memory
5.Allocating Memory from the Stack
6.Get variable address in unsafe mode
7.Unsafe code: get data type size
8.Address and size of pointer object
9.Using the unsafe keyword
10.object pointer
11.Use unsafe method to clone array
12.unsafe and fixed block
13.mark method as unsafe
14.Use unsage code to swap two integers
15.Pointer for struct
16.Compare pointer