Out of curiosity, Is there a way to declare Guid.Empty, nay any Guid as const? I once thought all value types can be declared as a constant.
Line below returns the error: CS0283 The type 'Guid' cannot be declared const
const Guid myConstGuid = Guid.Empty;