internal CtfScope(string name, CtfScope parent)
 {
     this.Name = name;
     this.Parent = parent;
     this.Children = new Dictionary<string, CtfScope>(StringComparer.InvariantCulture);
     this.PropertyBag = new CtfPropertyBag();
 }
예제 #2
0
 internal CtfCompoundTypeScope(string name, CtfScope parent)
     : base(name, parent)
 {
 }