You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<summary>Gets a value that indicates whether the type is a byref-like structure.</summary>
10854
+
<value>
10855
+
<see langword="true" /> if the <see cref="T:System.Type" /> is a a byref-like structure; otherwise, <see langword="false" />.</value>
10856
+
<remarks>
10857
+
<format type="text/markdown"><.
<summary>Gets a value that indicates whether the current <see cref="T:System.Type" /> represents a type parameter in the definition of a generic method.</summary>
11440
+
<value>
11441
+
<see langword="true" /> if the <see cref="T:System.Type" /> object represents a type parameter of a generic method definition; otherwise, <see langword="false" />.</value>
<summary>Gets a value that indicates whether the current <see cref="T:System.Type" /> represents a type parameter in the definition of a generic type.</summary>
11683
+
<value>
11684
+
<see langword="true" /> if the <see cref="T:System.Type" /> object represents a type parameter of a generic type definition; otherwise, <see langword="false" />.</value>
11675
11685
<remarks>To be added.</remarks>
11676
11686
</Docs>
11677
11687
</Member>
@@ -13125,9 +13135,18 @@ Types that are defined in the .NET Standard are not marked with <xref:System.Ser
13125
13135
<ReturnType>System.Boolean</ReturnType>
13126
13136
</ReturnValue>
13127
13137
<Docs>
13128
-
<summary>To be added.</summary>
13129
-
<value>To be added.</value>
13130
-
<remarks>To be added.</remarks>
13138
+
<summary>Gets a value that indicates whether the type is a signature type.</summary>
13139
+
<value>
13140
+
<see langword="true" /> if the <see cref="T:System.Type" /> is a signature type; otherwise, <see langword="false" />.</value>
13141
+
<remarks>
13142
+
<format type="text/markdown"><![CDATA[
13143
+
13144
+
## Remarks
13145
+
13146
+
A signature type is a restricted type that can be passed to the <xref:System.Type.GetMethod%2A> method but does not support most of the other reflection functionality. For example, you can obtain the signature type instance corresponding to the generic method parameter by calling the <xref:System.Type.MakeGenericMethodParameter%2A> method.
13147
+
13148
+
]]></format>
13149
+
</remarks>
13131
13150
</Docs>
13132
13151
</Member>
13133
13152
<Member MemberName="IsSpecialName">
@@ -13289,8 +13308,9 @@ Types that are defined in the .NET Standard are not marked with <xref:System.Ser
13289
13308
<ReturnType>System.Boolean</ReturnType>
13290
13309
</ReturnValue>
13291
13310
<Docs>
13292
-
<summary>To be added.</summary>
13293
-
<value>To be added.</value>
13311
+
<summary>Gets a value that indicates whether the type is an array type that can represent only a single-dimensional array with a zero lower bound.</summary>
13312
+
<value>
13313
+
<see langword="true" /> if the current <see cref="T:System.Type" /> is an array type that can represent only a single-dimensional array with a zero lower bound; otherwise, <see langword="false" />.</value>
13294
13314
<remarks>To be added.</remarks>
13295
13315
</Docs>
13296
13316
</Member>
@@ -13318,9 +13338,17 @@ Types that are defined in the .NET Standard are not marked with <xref:System.Ser
13318
13338
<ReturnType>System.Boolean</ReturnType>
13319
13339
</ReturnValue>
13320
13340
<Docs>
13321
-
<summary>To be added.</summary>
13322
-
<value>To be added.</value>
13323
-
<remarks>To be added.</remarks>
13341
+
<summary>Gets a value that indicates whether the type is a type definition.</summary>
13342
+
<value>
13343
+
<see langword="true" /> if the current <see cref="T:System.Type" /> is a type definition; otherwise, <see langword="false" />.</value>
13344
+
<remarks>
13345
+
<format type="text/markdown"><![CDATA[
13346
+
13347
+
## Remarks
13348
+
A <xref:System.Type> instance is a type definition if it represents the type directly defined in assembly, in contrast to types that are constructed on demand based on other types. For example, a primitive type, class, structure, or generic type definition is a type definition, but an array, reference, pointer, or instantiated generic type isn't.
13349
+
13350
+
]]></format>
13351
+
</remarks>
13324
13352
</Docs>
13325
13353
</Member>
13326
13354
<Member MemberName="IsUnicodeClass">
@@ -13517,9 +13545,17 @@ Types that are defined in the .NET Standard are not marked with <xref:System.Ser
13517
13545
<ReturnType>System.Boolean</ReturnType>
13518
13546
</ReturnValue>
13519
13547
<Docs>
13520
-
<summary>To be added.</summary>
13521
-
<value>To be added.</value>
13522
-
<remarks>To be added.</remarks>
13548
+
<summary>Gets a value that indicates whether the type is an array type that can represent a multi-dimensional array or an array with an arbitrary lower bound.</summary>
13549
+
<value>
13550
+
<see langword="true" /> if the current <see cref="T:System.Type" /> is an array type that can represent a multi-dimensional array or an array with an arbitrary lower bound; otherwise, <see langword="false" />.</value>
13551
+
<remarks>
13552
+
<format type="text/markdown"><![CDATA[
13553
+
13554
+
## Remarks
13555
+
If the value of this property is `true` for an array type, it can be used to create single-dimensional or multi-dimensional array instances with arbitrary lower bounds. Otherwise, the array type can only be used to create instances of single-dimensional arrays with a zero lower bound.
0 commit comments