Skip to content

Instantly share code, notes, and snippets.

@ianChen806
Last active July 14, 2022 07:12
Show Gist options
  • Save ianChen806/2043d780ee1310001d74c5aaaeb8712e to your computer and use it in GitHub Desktop.
Save ianChen806/2043d780ee1310001d74c5aaaeb8712e to your computer and use it in GitHub Desktop.
create generic type instance
Type[] type = { typeof(string) };
var genericType = typeof(List<>).MakeGenericType(type);
var instance = Activator.CreateInstance(genericType);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment