コード例 #1
0
 public bool Has <T>(int index)
 {
     if (index < Size)
     {
         Resolve(index, NValue.GetValueType <T>(), false);
         return(!NValue.IsNullOrEmpty(ArgsList[index]));
     }
     return(false);
 }
コード例 #2
0
 public bool Has(int index)
 {
     return(index < Size && !(NValue.IsNullOrEmpty(ArgsList[index])));
 }