Skip to content

Commit 856bb63

Browse files
authored
Add explicit conversion from uint to nint
Fixes #33744
1 parent 68c8193 commit 856bb63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/language-reference/builtin-types/numeric-conversions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The following table shows the predefined implicit conversions between the built-
2525
|[short](integral-numeric-types.md)|`int`, `long`, `float`, `double`, or `decimal`, or `nint`|
2626
|[ushort](integral-numeric-types.md)|`int`, `uint`, `long`, `ulong`, `float`, `double`, or `decimal`, `nint`, or `nuint`|
2727
|[int](integral-numeric-types.md)|`long`, `float`, `double`, or `decimal`, `nint`|
28-
|[uint](integral-numeric-types.md)|`long`, `ulong`, `float`, `double`, or `decimal`, or `nuint`|
28+
|[uint](integral-numeric-types.md)|`long`, `ulong`, `float`, `double`, or `decimal`, `nint`, or `nuint`|
2929
|[long](integral-numeric-types.md)|`float`, `double`, or `decimal`|
3030
|[ulong](integral-numeric-types.md)|`float`, `double`, or `decimal`|
3131
|[float](floating-point-numeric-types.md)|`double`|

0 commit comments

Comments
 (0)