Tagged Questions
3
votes
1answer
162 views
How to release Events
I want to use the OnCreateFeature-Event to combine it with other actions. So I use
Events.OnCreateFeature += delegate(IObject obj) { LoopTools_OnCreateFeature(obj); };
to listen to this event. ...