Esempio n. 1
0
 public static bool GetSystemNullableFields(this CorType type, out TokenAndName hasValueInfo, out TokenAndName valueInfo, out CorType nullableElemType)
 {
     nullableElemType = null;
     if (!type.GetSystemNullableFields(out hasValueInfo, out valueInfo))
     {
         return(false);
     }
     nullableElemType = type.FirstTypeParameter;
     return(nullableElemType != null);
 }