Aqueduct.Extensions.GuidExtensions.IsEmpty C# (CSharp) Method

IsEmpty() public static method

Determine whether a Guid is empty, i.e. set to Guid.Empty
public static IsEmpty ( this guid ) : bool
guid this
return bool
        public static bool IsEmpty (this Guid guid)
        {
            return guid.Equals (Guid.Empty);
        }