Example #1
0
 private void SetTo(ItemDictionary <Type> types)
 {
     foreach (var type in types)
     {
         type.Value.Namespace = Fullname;
         SetTo(type.Value.Types);
     }
 }
Example #2
0
 private Namespace()
 {
     Types          = new ItemDictionary <Type>();
     ExtensionTypes = new ItemDictionary <Type>();
 }