Skip to content

Commit b99867c

Browse files
authored
Add explicit conversion from uint to nint (#33763)
Fixes #33744
1 parent 74d8f8f commit b99867c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: Learn about the implicit and explicit conversions between the built-in numeric types in C#
33
title: "Built-in numeric conversions - C# reference"
4-
ms.date: 03/17/2021
4+
ms.date: 01/30/2023
55
helpviewer_keywords:
66
- "implicit numeric conversions [C#]"
77
- "explicit numeric conversion [C#]"
@@ -63,7 +63,7 @@ The following table shows the predefined explicit conversions between the built-
6363
|[short](integral-numeric-types.md)|`sbyte`, `byte`, `ushort`, `uint`, `ulong`, or `nuint`|
6464
|[ushort](integral-numeric-types.md)|`sbyte`, `byte`, or `short`|
6565
|[int](integral-numeric-types.md)|`sbyte`, `byte`, `short`, `ushort`, `uint`, `ulong`, or `nuint`|
66-
|[uint](integral-numeric-types.md)|`sbyte`, `byte`, `short`, `ushort`, or `int`|
66+
|[uint](integral-numeric-types.md)|`sbyte`, `byte`, `short`, `ushort`, `int`, or `nint`|
6767
|[long](integral-numeric-types.md)|`sbyte`, `byte`, `short`, `ushort`, `int`, `uint`, `ulong`, `nint`, or `nuint`|
6868
|[ulong](integral-numeric-types.md)|`sbyte`, `byte`, `short`, `ushort`, `int`, `uint`, `long`, `nint`, or `nuint`|
6969
|[float](floating-point-numeric-types.md)|`sbyte`, `byte`, `short`, `ushort`, `int`, `uint`, `long`, `ulong`, `decimal`, `nint`, or `nuint`|

0 commit comments

Comments
 (0)