Ejemplo n.º 1
0
        internal TypeSetCe(IEnumerable <Ce> source)
        {
            this.source = source;

            var allReferences = from member in source
                                from reference in member.References
                                select reference;

            this.references = new ReferencedTypesTypeSet(allReferences.Distinct(), null);
        }
Ejemplo n.º 2
0
 internal TypeCe(ReferencedTypesTypeSet refs, Type type)
 {
     references = refs;
     this.type  = type;
 }