Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 문자열 및 문자열 데이터 형식은 무엇입니까?


String은 System.String을 나타내는 반면 string은 System.String에 대한 C#의 별칭입니다 -

예를 들어 -

string str = "Welcome!";

필수는 아니지만 일반적으로 클래스로 작업할 때 String이 사용됩니다 -

string str = String.Format("Welcome! {0}!", user);

string은 System.String의 별칭이기 때문에. 다른 데이터 유형의 별칭은 -

입니다.

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

C#의 문자열 유형을 사용하면 모든 문자열 값을 변수에 할당할 수 있습니다. 문자열 형식은 System.String 클래스의 별칭입니다. 객체 유형에서 파생됩니다. 문자열 유형의 값은 인용 부호와 @ 인용 부호의 두 가지 형식으로 문자열 리터럴을 사용하여 할당할 수 있습니다.

출력

String str = "Okay!";