Guids are created using the new keyword which makes me think it\'s a reference type.
new
Is this correct?
Guid uid = new Guid();
Guid is a Value Type.
See MSDN. Note that Guid is a struct. All structs are Value Types.