Reputation: 159
My classes all implement an interface. This interface stores some funtions for general functionality.
One of those funtionalities is Logging. In this Logging function I want to get the AssemblyVersion of the Class that implements the interface.
My problem is that Assembly.GetExectuingAssembly()
will return the AssemblyVersion of the Interface.
How can I get the Assembly Version of the implementing class?
Upvotes: 0
Views: 135