String은 System.String을 나타내는 반면 string은 System.String에 대한 C#의 별칭입니다 -
예를 들어
string str = "Welcome!";
필수는 아니지만 일반적으로 클래스 작업 시 String을 사용합니다.
string str = String.Format("Welcome! {0}!", user);
문자열은 System의 별칭이기 때문입니다. 끈. 다른 데이터 유형의 별칭은 -
입니다.예시
object: System.Object string: System.String bool: System.Boolean float: System.Single double: System.Double decimal: System.Decimal byte: System.Byte sbyte: System.SByte short: System.Int16 ushort: System.UInt16 int: System.Int32 uint: System.UInt32 long: System.Int64 ulong: System.UInt64 char: System.Char