什么是 C# 中的字符串常量?
字符串常量用双引号 "" 或 @ "" 括起来。字符串包含与字符常量相似的字符:普通字符、转义序列和通用字符。
以下是字符串常量的一些示例 −
“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!
广告