BTDB.ODBLayer.DBReaderCtx.RetriveObj C# (CSharp) 메소드

RetriveObj() 개인적인 메소드

private RetriveObj ( int ido ) : object
ido int
리턴 object
        object RetriveObj(int ido)
        {
            if (_objects == null) _objects = new List<object>();
            while (_objects.Count <= ido) _objects.Add(null);
            return _objects[ido];
        }