Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Generics - Strange Interview Question [closed]

Tags:

c#

generics

An interviewer argued me "Genrics are not completely Genrics",

He provided the example (Parameters int k,int d are not generic)

public static void PrintThis<T>(T a, T b, T c, int k,int d)
{

}

He asked me if i prove still it is generics , i will be allowed to take up the next round. I did not know what he is expecting from me,and what he really means by showing such example.

Guide me how to smartly face such a strange interview ?.

Thanks in advance.

like image 702
udana Avatar asked Oct 22 '09 22:10

udana


1 Answers

Some people are insane. You should smile and nod.

like image 139
Amy B Avatar answered Sep 18 '22 17:09

Amy B