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.…
Here you can find a generic Type conversion snippet for C# and VB.NET. Sample C# Sample VB.NET
To open a Website in the default Browser in C# and VB.NET you can use the snippet below. Sample C# Sample VB
This snippet let’s you use the Left, Right, Mid methods known from VisualBasic in C# without referencing Microsoft.VisualBasic Namespace.
To deep copy a IList in C# and VB.NET you can use the snippet. Sample C# Sample VB.NET
What is the difference between a mutable and immutable string in C# and VB.NET? A mutable string can be changed. An immutable string cannot be changed. Mutable is the english…
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
Here you can find a Case-Insensitive String.Replace method for C# and VB.NET. Sample C# Sample VB.NET