System.GuidExtension.IsEmpty C# (CSharp) 메소드

IsEmpty() 공개 정적인 메소드

Checks whether this Guid is a Guid.Empty.
public static IsEmpty ( System.Guid input ) : bool
input System.Guid The .
리턴 bool
        public static bool IsEmpty(this Guid input) => input.Equals(Guid.Empty);
    }
GuidExtension