AjErl.Machine.GetHashCode C# (CSharp) Method

GetHashCode() public static method

public static GetHashCode ( object obj ) : int
obj object
return int
        public static int GetHashCode(object obj)
        {
            if (obj == null)
                return 0;

            return obj.GetHashCode();
        }