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