Skip to content

Commit e227133

Browse files
authored
Document System.Type.MakeGenericMethodParameter (#3639)
* Document System.Type.MakeGenericMethodParameter * suggestions by mairaw * Warning fix
1 parent c9a87d4 commit e227133

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

xml/System/Type.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5599,7 +5599,7 @@ One of the elements in the <paramref name="types" /> array is <see langword="nul
55995599
-or-
56005600

56015601
A null reference (<see langword="Nothing" /> in Visual Basic), to use the <see cref="P:System.Type.DefaultBinder" />.</param>
5602-
<param name="callConvention">To be added.</param>
5602+
<param name="callConvention">The object that specifies the set of rules to use regarding the order and layout of arguments, how the return value is passed, what registers are used for arguments, and how the stack is cleaned up.</param>
56035603
<param name="types">An array of <see cref="T:System.Type" /> objects representing the number, order, and type of the parameters for the method to get.
56045604

56055605
-or-
@@ -13866,10 +13866,12 @@ If the value of this property is `true` for an array type, it can be used to cre
1386613866
<Parameter Name="position" Type="System.Int32" Index="0" FrameworkAlternate="netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
1386713867
</Parameters>
1386813868
<Docs>
13869-
<param name="position">To be added.</param>
13870-
<summary>To be added.</summary>
13871-
<returns>To be added.</returns>
13869+
<param name="position">The typed parameter position.</param>
13870+
<summary>Returns a signature type object that can be passed into the <c>Type[]</c> array parameter of a <see cref="Overload:System.Type.GetMethod" /> method to represent a generic parameter reference.</summary>
13871+
<returns>A signature type object that can be passed into the <c>Type[]</c> array parameter of a <see cref="Overload:System.Type.GetMethod" /> method to represent a generic parameter reference.</returns>
1387213872
<remarks>To be added.</remarks>
13873+
<exception cref="T:System.ArgumentOutOfRangeException">
13874+
<paramref name="position" /> is negative.</exception>
1387313875
</Docs>
1387413876
</Member>
1387513877
<Member MemberName="MakeGenericSignatureType">

0 commit comments

Comments
 (0)