Beispiel #1
0
        public int GetPoolIndex(IConfigBinary binary)
        {
            if (poolIndex < 0)
            {
                Pool pool = binary.GetPool(PooledColumnType);
                poolIndex = pool.GetIndex(this);
            }

            return(poolIndex);
        }
Beispiel #2
0
        public int GetPoolIndex(IConfigBinary binary)
        {
            if (poolIndex < 0)
            {
                Pool pool = binary.GetPool(PooledColumnType);
                poolIndex = pool.GetIndex(this);
                foreach (var data in Data)
                {
                    (data as IPooledData)?.GetPoolIndex(binary);
                }
            }

            return(poolIndex);
        }