datatype
-
2/17 : TIL | 다양한 DataType 알아보기. nullable한 reference type. ?로 value type도 nullable하게 치환하기Today I Learned/C# 2023. 2. 17. 23:42
C# DataType using System; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { class Program { static void Main(string[] args) { bool b = true; //VALUE TYPE(null X) //signed integer short sh = 100;// 16bit int i = 100; //정수 32bit long l = 10000; //64bit //unsigned integer(항상 0이상) ushort us = 111; uint ui = 0U; ulong ul = 1000UL; float f = 3.14F; // 32bit dou..