/// <summary>
 /// Creates a new <see cref="ParameterMember"/> with the
 /// <paramref name="parent"/> provided.
 /// </summary>
 /// <param name="parent">The <typeparamref name="TIntermediateMethod"/>
 /// which contains the <see cref="ParameterMember"/>.</param>
 public ParameterMember(TIntermediateMethod parent)
     : base(parent, parent.Assembly)
 {
 }
 /// <summary>
 /// Creates a new <see cref="ParameterDictionary"/> with the
 /// <paramref name="parent"/> provided.
 /// </summary>
 /// <param name="parent">The <typeparamref name="TIntermediateMethod"/> which owns the
 /// <see cref="ParameterDictionary"/>.</param>
 public ParameterDictionary(TIntermediateMethod parent)
     : base(parent)
 {
 }