コード例 #1
0
ファイル: CacheContainer.cs プロジェクト: willofd02/Unity
        public override int GetHashCode()
        {
            int hash = 17;

            hash = hash * 23 + cacheType.GetHashCode();
            hash = hash * 23 + (updatedTimeString?.GetHashCode() ?? 0);
            return(hash);
        }