GameFramework.KeyString.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            int ret = 0;
              for (int ix = 0; ix < m_Keys.Count; ++ix) {
            ret += m_Keys[ix].GetHashCode();
              }
              return ret;
        }