Im sure my title is not perfect so let me clear my self.
by this article : http://msdn.microsoft.com/en-us/magazine/jj863136.aspx ,
void Print()
{
int d = _data; // Read 1
if (_initialized) // Read 2
Console.WriteLine(d);
else
Console.WriteLine("Not initialized");
}
why does Read 1 count as only reading and not as writing too? I mean, in the end the '_data' content is writen to 'd'.
I hope you understood what Im asking.