コード例 #1
0
 public static bool ReturnsCollection(this IReturnable source, IType itemType, string name) =>
 source.ReturnsCollection(itemType) && source.Name == name;
コード例 #2
0
 public static bool ReturnsCollection <T>(this IReturnable source, string name) => source.ReturnsCollection(type.of <T>(), name);
コード例 #3
0
 public static bool ReturnsCollection <T>(this IReturnable source) => source.ReturnsCollection(type.of <T>());
コード例 #4
0
 public static bool ReturnsCollection(this IReturnable source, string name) => source.ReturnsCollection <object>(name);
コード例 #5
0
 public static bool ReturnsCollection(this IReturnable source) => source.ReturnsCollection <object>();