Retrieving the Data Value Using a Pointer

suggest change

You can retrieve the data stored at the located referenced by the pointer variable, using the ToString() method. The following example demonstrates this:

using System;
namespace UnsafeCodeApplication
{
   class Program
   {
      public static void Main()
      {
         unsafe
         {
            int var = 20;
            int* p = &var;
            Console.WriteLine("Data is: {0} " , var);
            Console.WriteLine("Data is: {0} " , p->ToString());
            Console.WriteLine("Address is: {0} " , (int)p);
         }
         
         Console.ReadKey();
      }
   }
}

When the above code was compiled and executed, it produces the following result:

Data is: 20
Data is: 20
Address is: 77128984

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Pointers and Unsafe Code:
* Retrieving the Data Value Using a Pointer

Table Of Contents
17 Regex
19 Arrays
21 Enum
22 Tuples
24 GUID
27 Looping
36 Casting
46 Methods
88 Events
92 Structs
104 Indexer
106 Stream
107 Timers
109 Threading
127 Caching
135 Pointers
136 Pointers and Unsafe Code
147 C# Script