Jurassic.Library.SparseArray.GetValueNonCached C# (CSharp) 메소드

GetValueNonCached() 개인적인 메소드

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