Here is the code,
Code:
namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            unsafe
            {
                int* p = new int(4);

                Console.WriteLine(*p);

                delete p;
            }
        }
    }
}
There is compiler errors. What is wrong with the code? Thanks.