Something I couldn’t easily find on the interwebs so I decided to post it just incase anyone else had trouble with it.
//gets all features in featureclass
IFeatureCursor featureCursorGet = featureClass.Search(null, false);
//starts the first feature
IFeature feature = featureCursorGet.NextFeature();
//gets the column ID where we can find the report ID
while (feature != null)
{
feature = featureCursorGet.NextFeature();
}
Scott