+ 1
Help with answer
Hello i'm stuck on this part in the C# Course for the past 1 hour, could someone help me please? Fill in the blanks to declare a generic method that displays its argument value. static void Print (blank) T (blank) (T x) { Console.WriteLine((blank)); }
1 Resposta
0
Mateusz Jezierski
Explanation is already given in lesson.
Generic type can be write like <T>
You have to print argument x here.