Created
January 23, 2018 09:44
-
-
Save Novakov/7aa999a138e833e4d420daa1cb3c0ca2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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