Hello
I'm wondering when it is best to use reflection to call a method instead of defining and using an interface.
I guess using the interface will be faster but what are the advantages of using reflection?
The program I'm creating is a GUI which should support mutliple views (Model - View - Controller design pattern) that are updated when new data arrives from an external source.
Thanks
Jasper