@@ -10,12 +10,12 @@ This topic lists the basic types that are defined in F#. These types are the mos
10
10
| Type| .NET type| Description| Example|
11
11
| ----| ---------| -----------| -------|
12
12
| ` bool ` | < xref:System.Boolean > | Possible values are ` true ` and ` false ` .| ` true ` /` false ` |
13
- | ` byte ` | < xref:System.Byte > | Values from 0 to 255.| ` 1uy ` |
14
- | ` sbyte ` | < xref:System.SByte > | Values from -128 to 127.| ` 1y ` |
13
+ | ` uint8 ` , ` byte ` | < xref:System.Byte > | Values from 0 to 255.| ` 1uy ` |
14
+ | ` int8 ` , ` sbyte ` | < xref:System.SByte > | Values from -128 to 127.| ` 1y ` |
15
15
| ` int16 ` | < xref:System.Int16 > | Values from -32768 to 32767.| ` 1s ` |
16
16
| ` uint16 ` | < xref:System.UInt16 > | Values from 0 to 65535.| ` 1us ` |
17
- | ` int ` | < xref:System.Int32 > | Values from -2,147,483,648 to 2,147,483,647.| ` 1 ` |
18
- | ` uint ` | < xref:System.UInt32 > | Values from 0 to 4,294,967,295.| ` 1u ` |
17
+ | ` int32 ` , ` int ` | < xref:System.Int32 > | Values from -2,147,483,648 to 2,147,483,647.| ` 1 ` |
18
+ | ` uint32 ` , ` uint ` | < xref:System.UInt32 > | Values from 0 to 4,294,967,295.| ` 1u ` |
19
19
| ` int64 ` | < xref:System.Int64 > | Values from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.| ` 1L ` |
20
20
| ` uint64 ` | < xref:System.UInt64 > | Values from 0 to 18,446,744,073,709,551,615.| ` 1UL ` |
21
21
| ` nativeint ` | < xref:System.IntPtr > | A native pointer as a signed integer.| ` nativeint 1 ` |
0 commit comments