C# Developers' Journal (original) (raw)

In C# is there a way to get a reference to a primitive without the use of an unsafe block?

Something similar to this in C/C++:

double d;
double* e = &d;