Hi,
there was a simple method IFeatureClass.GetFeature in ArcObjects. There is nothing like that in ArcGIS Pro SDK. What is the fastest way to get a feature from FeatureClass? Should I use inspector like this:
var inspector = new Inspector();
inspector.Load(featClass, objectId);
or is there some other (maybe better) method how to retrieve a single feature and work with it?