DotSpatial.Data.IFeatureSet fs = DotSpatial.Data.FeatureSet.Open(fileName);
foreach (DotSpatial.Data.IFeature f in __fs.Features__)
{
//
}
从外部导入一个shp文件(我的测试文件大小为5MB),每当调用fs.Features时,内存直线上升。
Comments: ** Comment from web user: mogikanin **
foreach (DotSpatial.Data.IFeature f in __fs.Features__)
{
//
}
从外部导入一个shp文件(我的测试文件大小为5MB),每当调用fs.Features时,内存直线上升。
Comments: ** Comment from web user: mogikanin **
Hi, so you have a hard memory using when you just looping through fs.Features? Can you attach sample file?