System.GuidExtension.IsEmpty C# (CSharp) Méthode

IsEmpty() public static méthode

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