I'll often have objects with properties that use the following pattern:
private decimal? _blah;
private decimal Blah
{
get
{
if (_blah == null)
_blah = InitBlah();
return _blah.Value;
}
}
Is there a name for this method?