public IIntermediateModule Add(string moduleName)
        {
            var result = new IntermediateModule(moduleName, this.assembly);

            this._Add(result.UniqueIdentifier, result);
            return(result);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Creates a new <see cref="IntermediateModuleGlobalFieldDictionary"/>
 /// </summary>
 /// <param name="master">
 /// The <see cref="IntermediateFullMemberDictionary"/> master
 /// dictionary which groups the intermediate module's members
 /// together.</param>
 /// <param name="parent">The <see cref="IntermediateModule"/> which owns the <see cref="IntermediateModuleGlobalFieldDictionary"/>.</param>
 protected internal IntermediateModuleGlobalFieldDictionary(IntermediateFullMemberDictionary master, IntermediateModule parent) :
     base(master, parent)
 {
 }