Skip to content

Instantly share code, notes, and snippets.

@VladimirReshetnikov
Created January 31, 2014 23:12
Show Gist options
  • Save VladimirReshetnikov/8745223 to your computer and use it in GitHub Desktop.
Save VladimirReshetnikov/8745223 to your computer and use it in GitHub Desktop.
class A<T>
{
class B : A<int>
{
}
class C : B
{
C GetThis()
{
return this;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment