Выходит вот такая ошибка -
A requested feature object could not be located. [МОЙ_ФИЧАКЛАСС]
......
for (int i = 0; i < pMap.LayerCount-1; i++)
{
ILayer pvLayer = pMap.get_Layer(i);
if (pvLayer.Name == LayerName)
{
MessageBox.Show(pvLayer.Name);
pLayer = pvLayer;
pGFLayer = pLayer as IFeatureLayer;
pFeature = pGFLayer.FeatureClass.GetFeature(Convert.ToInt32(dbid));//тута ошибка и выходит
MessageBox.Show(pGFLayer.Name + Convert.ToString(pFeature.get_Value(pFeature.Fields.FindField("DB_ID"))));
break;
}
}
что ему не нравится?