Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions xml/System/Type.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7298,7 +7298,7 @@ Type.GetType("System.Collections.Generic.Dictionary`2[System.String,[MyType,MyAs

|To Get|Use|
|------------|---------|
|A nullable <xref:System.Int32>|`Type.GetType("System.Nullable`1[System.Int32]")`|
|A nullable <xref:System.Int32>|``Type.GetType("System.Nullable`1[System.Int32]")``|
|An unmanaged pointer to `MyType`|`Type.GetType("MyType*")`|
|An unmanaged pointer to a pointer to `MyType`|`Type.GetType("MyType**")`|
|A managed pointer or reference to `MyType`|`Type.GetType("MyType&")`. Note that unlike pointers, references are limited to one level.|
Expand All @@ -7308,11 +7308,11 @@ Type.GetType("System.Collections.Generic.Dictionary`2[System.String,[MyType,MyAs
|An n-dimensional array|A comma (,) inside the brackets a total of n-1 times. For example, `System.Object[,,]` represents a three-dimensional `Object` array.|
|An array of one-dimensional arrays|`Type.GetType("MyType[][]")`|
|A rectangular two-dimensional array with unknown lower bounds|`Type.GetType("MyType[,]")`|
|A generic type with one type argument|`Type.GetType("MyGenericType`1[MyType]")`|
|A generic type with two type arguments|`Type.GetType("MyGenericType`2[MyType,AnotherType]")`|
|A generic type with two assembly-qualified type arguments|`Type.GetType("MyGenericType`2[[MyType,MyAssembly],[AnotherType,AnotherAssembly]]")`|
|An assembly-qualified generic type with an assembly-qualified type argument|`Type.GetType("MyGenericType`1[[MyType,MyAssembly]],MyGenericTypeAssembly")`|
|A generic type whose type argument is a generic type with two type arguments|`Type.GetType("MyGenericType`1[AnotherGenericType`2[MyType,AnotherType]]")`|
|A generic type with one type argument|``Type.GetType("MyGenericType`1[MyType]")``|
|A generic type with two type arguments|``Type.GetType("MyGenericType`2[MyType,AnotherType]")``|
|A generic type with two assembly-qualified type arguments|``Type.GetType("MyGenericType`2[[MyType,MyAssembly],[AnotherType,AnotherAssembly]]")``|
|An assembly-qualified generic type with an assembly-qualified type argument|``Type.GetType("MyGenericType`1[[MyType,MyAssembly]],MyGenericTypeAssembly")`|
|A generic type whose type argument is a generic type with two type arguments|``Type.GetType("MyGenericType`1[AnotherGenericType`2[MyType,AnotherType]]")`|



Expand Down Expand Up @@ -7504,7 +7504,7 @@ Type.GetType("System.Collections.Generic.Dictionary`2[System.String,[MyType,MyAs

|To Get|Use|
|------------|---------|
|A nullable <xref:System.Int32>|`Type.GetType("System.Nullable`1[System.Int32]")`|
|A nullable <xref:System.Int32>|``Type.GetType("System.Nullable`1[System.Int32]")``|
|An unmanaged pointer to `MyType`|`Type.GetType("MyType*")`|
|An unmanaged pointer to a pointer to `MyType`|`Type.GetType("MyType**")`|
|A managed pointer or reference to `MyType`|`Type.GetType("MyType&")`. Note that unlike pointers, references are limited to one level.|
Expand All @@ -7514,11 +7514,11 @@ Type.GetType("System.Collections.Generic.Dictionary`2[System.String,[MyType,MyAs
|An n-dimensional array|A comma (,) inside the brackets a total of n-1 times. For example, `System.Object[,,]` represents a three-dimensional `Object` array.|
|A two-dimensional array's array|`Type.GetType("MyArray[][]")`|
|A rectangular two-dimensional array with unknown lower bounds|`Type.GetType("MyArray[,]")`|
|A generic type with one type argument|`Type.GetType("MyGenericType`1[MyType]")`|
|A generic type with two type arguments|`Type.GetType("MyGenericType`2[MyType,AnotherType]")`|
|A generic type with two assembly-qualified type arguments|`Type.GetType("MyGenericType`2[[MyType,MyAssembly],[AnotherType,AnotherAssembly]]")`|
|An assembly-qualified generic type with an assembly-qualified type argument|`Type.GetType("MyGenericType`1[[MyType,MyAssembly]],MyGenericTypeAssembly")`|
|A generic type whose type argument is a generic type with two type arguments|`Type.GetType("MyGenericType`1[AnotherGenericType`2[MyType,AnotherType]]")`|
|A generic type with one type argument|``Type.GetType("MyGenericType`1[MyType]")``|
|A generic type with two type arguments|``Type.GetType("MyGenericType`2[MyType,AnotherType]")``|
|A generic type with two assembly-qualified type arguments|``Type.GetType("MyGenericType`2[[MyType,MyAssembly],[AnotherType,AnotherAssembly]]")``|
|An assembly-qualified generic type with an assembly-qualified type argument|``Type.GetType("MyGenericType`1[[MyType,MyAssembly]],MyGenericTypeAssembly")``|
|A generic type whose type argument is a generic type with two type arguments|``Type.GetType("MyGenericType`1[AnotherGenericType`2[MyType,AnotherType]]")``|



Expand Down Expand Up @@ -7733,7 +7733,7 @@ Type.GetType("System.Collections.Generic.Dictionary`2[System.String,[MyType,MyAs

|To Get|Use|
|------------|---------|
|A nullable <xref:System.Int32>|`Type.GetType("System.Nullable`1[System.Int32]")`|
|A nullable <xref:System.Int32>|``Type.GetType("System.Nullable`1[System.Int32]")``|
|An unmanaged pointer to `MyType`|`Type.GetType("MyType*")`|
|An unmanaged pointer to a pointer to `MyType`|`Type.GetType("MyType**")`|
|A managed pointer or reference to `MyType`|`Type.GetType("MyType&")`. Note that unlike pointers, references are limited to one level.|
Expand All @@ -7743,11 +7743,11 @@ Type.GetType("System.Collections.Generic.Dictionary`2[System.String,[MyType,MyAs
|An n-dimensional array|A comma (,) inside the brackets a total of n-1 times. For example, `System.Object[,,]` represents a three-dimensional `Object` array.|
|A two-dimensional array's array|`Type.GetType("MyArray[][]")`|
|A rectangular two-dimensional array with unknown lower bounds|`Type.GetType("MyArray[,]")`|
|A generic type with one type argument|`Type.GetType("MyGenericType`1[MyType]")`|
|A generic type with two type arguments|`Type.GetType("MyGenericType`2[MyType,AnotherType]")`|
|A generic type with two assembly-qualified type arguments|`Type.GetType("MyGenericType`2[[MyType,MyAssembly],[AnotherType,AnotherAssembly]]")`|
|An assembly-qualified generic type with an assembly-qualified type argument|`Type.GetType("MyGenericType`1[[MyType,MyAssembly]],MyGenericTypeAssembly")`|
|A generic type whose type argument is a generic type with two type arguments|`Type.GetType("MyGenericType`1[AnotherGenericType`2[MyType,AnotherType]]")`|
|A generic type with one type argument|``Type.GetType("MyGenericType`1[MyType]")``|
|A generic type with two type arguments|``Type.GetType("MyGenericType`2[MyType,AnotherType]")``|
|A generic type with two assembly-qualified type arguments|``Type.GetType("MyGenericType`2[[MyType,MyAssembly],[AnotherType,AnotherAssembly]]")``|
|An assembly-qualified generic type with an assembly-qualified type argument|``Type.GetType("MyGenericType`1[[MyType,MyAssembly]],MyGenericTypeAssembly")``|
|A generic type whose type argument is a generic type with two type arguments|``Type.GetType("MyGenericType`1[AnotherGenericType`2[MyType,AnotherType]]")``|

]]></format>
</remarks>
Expand Down Expand Up @@ -14606,4 +14606,4 @@ Types that are defined in the .NET Standard are not marked with <xref:System.Ser
</Docs>
</Member>
</Members>
</Type>
</Type>