You have a class named Customer and a variable named customers.
You need to test whether the customers’ variable is a generic list of Customer objects.
Which line of code should you use?

A.
Option A
B.
Option B
C.
Option C
D.
Option D
Explanation:
http://stackoverflow.com/questions/982487/testing-if-object-is-of-generic-type-in-c-sharp
D
0
2
A works, check it out, if the question was related to checking if it is generic in general terms then I would have gone customers.GetType().IsGenericType
3
0
A is correct. D should be customers.GetType() == typeof(List) to be correct
5
0
yes
0
0
typeof (List with the generic type definition) 🙂
0
0
A
1
0
A
1
0
A
0
0