I want to build a temporary FeatureClass
which contains temporary Features
, such as points, which are useless later in programming.
While, I searched for ArcObject API reference
, but I can't find an efficient way to solve this problem. So how can I build temporary "container" to store some temporary Features ?
Should I first use CreateFeatureClass
to build a real FeatureClass and later delete it? I don't think this method is cool for I have to deal with some CLSID
thing.
PS:This "container" must have the ability to return a Cursor
.