Skip to content

Instantly share code, notes, and snippets.

@VladimirReshetnikov
Created January 28, 2014 20:28
Show Gist options
  • Select an option

  • Save VladimirReshetnikov/8675678 to your computer and use it in GitHub Desktop.

Select an option

Save VladimirReshetnikov/8675678 to your computer and use it in GitHub Desktop.
class A<T>
{
static void Foo(T[] a) { }
class B : A<T> { }
class C<T>
{
static void Foo()
{
B.Foo(null);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment