Skip to content

Instantly share code, notes, and snippets.

@Novakov
Created January 23, 2018 09:44
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 Novakov/7aa999a138e833e4d420daa1cb3c0ca2 to your computer and use it in GitHub Desktop.
Save Novakov/7aa999a138e833e4d420daa1cb3c0ca2 to your computer and use it in GitHub Desktop.
using System;
class A{}
class B{}
class G<T> {}
class Program
{
public static void Main()
{
Console.WriteLine(nameof(G<A>));
Console.WriteLine(nameof(G<B>));
Console.WriteLine(nameof(G<>));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment