Search Results

3
votes

Dynamically Create a generic type for template

What you are looking for is MakeGenericType string elementTypeName = Console.ReadLine(); Type elementType = Type.GetType(elementTypeName); Type[] types = new Type[] { elementType }; …