class Bar
{
private byte[] dg;
Bar(byte[] datagram)
{
dg = datagram;
}
int Foo
{
get { return BitConverter.ToInt16(dg, 8); }
}
}
When are properties evaluated? At the time Foo is accessed? The debugger evaluating all properties is scaring me.