/// <summary>
 /// Creates a new <see cref="ParameterMember"/> with the
 /// <paramref name="parent"/> provided.
 /// </summary>
 /// <param name="parent">The <typeparamref name="TIntermediateSignature"/>
 /// which owns the <see cref="ParameterMember"/>.</param>
 /// <param name="assembly">The <see cref="IIntermediateAssembly"/> in which
 /// the <see cref="ParameterMember"/> is contained.</param>
 public ParameterMember(TIntermediateSignature parent, IIntermediateAssembly assembly)
     : base(parent, assembly)
 {
 }
示例#2
0
 /// <summary>
 /// Creates a new <see cref="ParameterDictionary"/> with the
 /// <paramref name="parent"/> provided.
 /// </summary>
 /// <param name="parent">The <typeparamref name="TIntermediateSignature"/> which owns
 /// the <see cref="ParameterDictionary"/>.</param>
 /// <param name="assembly">The <see cref="IIntermediateAssembly"/>
 /// which contains the <see cref="ParameterDictionary"/>.</param>
 public ParameterDictionary(TIntermediateSignature parent, IIntermediateAssembly assembly)
     : base(parent)
 {
     this.assembly = assembly;
 }