C#
(C# Reference) C#의 int 순자의 범위
saltdoll
2017. 8. 31. 02:20
반응형
C#에서 Types에는 Value Types과 Reference Types과 void , var, Reference Tables for Types가 있다.
Value Types에는 bool, byte, char, decimal, double, enum, float, int, long, sbyte, short, struct, unit, ulong, ushort
Reference Types에는 class, delegate, dynamic, interface, object, string, Interpolated Strings
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/int
int (C# Reference)
int
denotes an integral type that stores values according to the size and range shown in the following table.
Type | Range | Size | .NET Framework type | Default Value |
---|---|---|---|---|
int | -2,147,483,648 to 2,147,483,647 | Signed 32-bit integer | System.Int32 | 0 |
반응형