示例#1
0
文件: Meta.cs 项目: rondoo/framework
 public DirtyMeta(Implementations? implementations, Meta[] properties)
     : base(implementations)
 {
     CleanMetas = properties.OfType<CleanMeta>().Concat(
         properties.OfType<DirtyMeta>().SelectMany(d => d.CleanMetas))
         .ToReadOnly();
 }
示例#2
0
 public MetaExpression(Type type, Meta meta)
 {
     this.type = type;
     this.Meta = meta;
 }
示例#3
0
 public MetaExpression(Type type, Meta meta):
     base(MetaExpressionType.MetaExpression, type)
 {
     this.Meta = meta;
 }