IsGenericList() static private method

static private IsGenericList ( Type instanceType ) : bool
instanceType System.Type
return bool
Esempio n. 1
0
 public override bool CanConvert(Type desiredType, Type inputType, object input, out bool exactMatch)
 {
     exactMatch = input != null && inputType == desiredType;
     return(DataBinder.IsGenericList(desiredType));
 }