How to get all types that implement a specific Interface in C# and VB.NET
To retrieve a IEnuemerable of all types in the current or another Assembly that implement a specific Interface / Abstract class and so on, you can use the snippets below.…
All the Code Snippets and Samples you need
To retrieve a IEnuemerable of all types in the current or another Assembly that implement a specific Interface / Abstract class and so on, you can use the snippets below.…
To get return Value from method invocation using reflection in C# and VB.NET you can use the snippet below. Sample C# Sample VB.NET For more informations on how to invoke…
To call a static method in different assembly using Reflection in C# and VB.NET you can use the snippet below. Sample C# Sample VB.NET
To call a static method in different assembly using Reflection in C# and VB.NET you can use the snippet below. Sample C# Sample VB.NET
The following snippet let you dynamically subscribe to events using C# or VB.NET. Sample C# Sample VB.NET In order to make this snippet work, you need to ensure that the…
To get the name of the calling method in C# and VB.NET you can use the snippet below. Sample C# Sample VB.NET
This snippet will give you Assembly version info extension methods for C# and VB.NET. Sample C# Sample VB.NET
To get the Calling Assembly in C# or VB.NET you can use Reflection. Sample C# Sample VB.NET for more informations see the MSDN: Reflection (C# and Visual Basic), Assembly.GetCallingAssembly Method