Skip to content

Instantly share code, notes, and snippets.

@nbxx
Last active September 16, 2016 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbxx/5f801f607230961b5e95c63997626cd6 to your computer and use it in GitHub Desktop.
Save nbxx/5f801f607230961b5e95c63997626cd6 to your computer and use it in GitHub Desktop.
public static object CreateInstance(Type type)
{
return type.GetConstructor(new Type[] { }).Invoke(new object[] { });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment