문자열 리터럴이나 상수는 큰따옴표 "" 또는 @""로 묶입니다. 문자열에는 문자 리터럴과 유사한 문자(일반 문자, 이스케이프 시퀀스, 범용 문자)가 포함됩니다.
다음은 문자열 리터럴의 몇 가지 예입니다. -
Hello, World" "Welcome, \
다음은 문자열 리터럴의 사용법을 보여주는 예입니다. -
using System; namespace Demo { class Program { static void Main(string[] args) { // string string str1 ="Hello, World"; Console.WriteLine(str1); // Multi-line string string str2 = @"Welcome, Hope you are doing great!"; Console.WriteLine(str2); } } }
다음 방법 중 하나를 사용하여 문자열 개체를 만듭니다. -
다음은 문자열 개체를 만들고 두 문자열을 비교하는 방법입니다.
using System; namespace Demo { class Program { static void Main(string[] args) { string str1 = "John"; string str2 = "Andy"; if (String.Compare(str1, str2) == 0) { Console.WriteLine(str1 + " and " + str2 + " are equal strings."); } else { Console.WriteLine(str1 + " and " + str2 + " are not equal strings."); } Console.ReadKey() ; } } }
위 내용은 C#의 문자열 리터럴과 문자열 개체 비교의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!