AjErl.Machine.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 정적인 메소드

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

            return obj.GetHashCode();
        }