C#中的字符串文本是什么?
字符串文本或常量用双引号 "" 或 @"" 括起来。字符串包含与字符文本类似的字符:普通字符、转义序列和通用字符。
以下是 String Literals 的一些示例 −
“Hi, User" "You’re 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); } } }
输出
Hello, World Welcome, Hope you are doing great!
广告