Unsafe Code & Pointers

Pointer Declaration

// Compile error for both of these declarations.
string* pMessage;
ServiceStatus* pStatus;

// ServiceStatus is defined as shown in the code below. 
// The problem is that ServiceStatus includes a string field:
struct ServiceStatus
{
	int State;
	// Description is a reference type.
	string Description;
}

Language Contrast: C/C++ Pointer Declaration

Assigning a Pointer