Adf.Core.Identity.ID.operator C# (CSharp) Method

operator() public static method

Returns the inequality of two IDs.
public static operator ( ) : bool
return bool
        public static bool operator !=(ID x, ID y)
        {
            return !(x == y);
        }