Jurassic.Library.SparseArray.GetValueNonCached C# (CSharp) Méthode

GetValueNonCached() private méthode

private GetValueNonCached ( uint index ) : object
index uint
Résultat object
        private object GetValueNonCached(uint index)
        {
            object[] array = FindOrCreateArray(index, writeAccess: false);
            if (array == null)
                return null;
            return array[index & NodeMask];
        }