Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 142 Bytes

MA0067.md

File metadata and controls

8 lines (6 loc) · 142 Bytes

MA0067 - Use Guid.Empty

_ = new Guid(); // non-compliant
_ = default(Guid); // non-compliant

_ = Guid.Empty; // compliant