Load an Assembly and get a custom attribute from specific methods
Advertisements I have a code snip that I load a dll and I am trying to get a custom attribute type. The custom type is declared in the SomeDll // SomeDll.dll [SomeCustomAttribute] public void Foo() { } This is the second project below public static void Main(string[] args) { string dllPath = @".\SomeDll.dll"; var assembly… Read More Load an Assembly and get a custom attribute from specific methods