C# Generics - Strange Interview Question

Posted by udana on Stack Overflow See other posts from Stack Overflow or by udana
Published on 2009-10-22T22:47:04Z Indexed on 2010/04/07 12:03 UTC
Read the original article Hit count: 215

Filed under:
|
|

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.

© Stack Overflow or respective owner

Related posts about c#

Related posts about strange