Skip to content

Instantly share code, notes, and snippets.

@kamukiriri
Created July 15, 2012 15:43
Show Gist options
  • Save kamukiriri/3117499 to your computer and use it in GitHub Desktop.
Save kamukiriri/3117499 to your computer and use it in GitHub Desktop.
ジェネリックメソッド
void Method<T>()
where T:A
{
Type type = typeof(T);
}
public void ShowForm<T>()
where T : Form, new()
{
Form form = new T();
form.Show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment