IsRequired() static private méthode

static private IsRequired ( PredefinedType type ) : bool
type PredefinedType
Résultat bool
 public AggregateSymbol GetReqPredefAgg(PredefinedType pt)
 {
     if (!PredefinedTypeFacts.IsRequired(pt))
     {
         throw Error.InternalCompilerError();
     }
     if (_predefSyms[(int)pt] == null)
     {
         // Delay load this thing.
         _predefSyms[(int)pt] = DelayLoadPredefSym(pt);
     }
     return(_predefSyms[(int)pt]);
 }
 public static bool isRequired(PredefinedType pt)
 {
     return(PredefinedTypeFacts.IsRequired(pt));
 }