Code:
int Demo = 5;
unsafe 
{
int * blah;
blah = &Demo;
frm.lblValue.Text  = "Value: " + *blah;
frm.lblAddress.Text = "Address: " + blah;
return 0;
}
In the code above, the bolded line, I want to show the address of varialbe blah. The way it is right now, gives me an error. How do I fix this?

Thanks,