コード例 #1
0
ファイル: TypeSystem.cs プロジェクト: zawodskoj/XamlIl
 public static bool IsNullableOf(this IXamlIlType type, IXamlIlType vtype)
 {
     return(type.IsNullable() && type.GenericArguments[0].Equals(vtype));
 }