이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

Metadata

ID: csharp-best-practices/use-proper-new-guid

Language: C#

Severity: Notice

Category: Best Practices

Description

This rule will warn you that you have instantiated the Guid struct without a parameter.

For an empty Guid, using Guid.Empty is cleaner.

For a randomly-generated Guid, use Guid.NewGuid() instead.

Non-Compliant Code Examples

public void Foo()
{
    var foo1 = new Guid();
    Guid foo2 = new Guid();
    Guid foo3 = new();
    var foo4 = default(Guid);
    Guid foo5 = default(Guid);
    Guid foo6 = default;
}

Compliant Code Examples

public void Foo(byte[] bytes)
{
    var g1 = Guid.Empty;
    var g2 = Guid.NewGuid();
    var g3 = new Guid(bytes);
}
PREVIEWING: brett.blue/embedded-collector-release