什么是C#中的字符串文字?

字符串文字或常量用双引号“”或@“”引起来。字符串包含与字符文字相似的字符:纯字符,转义序列和通用字符。

这是一些字符串文字的例子-

“Hi, User"
"You’re Welcome, \

以下是显示字符串文字用法的示例-

示例

using System;

namespace Demo {

   class Program {
      static void Main(string[] args) {

         //字符串
        字符串 str1 ="Hello, World";
         Console.WriteLine(str1);
         // Multi-line字符串
        字符串 str2 = @"Welcome,
         Hope you are doing great!";
         Console.WriteLine(str2);
      }
   }
}

输出结果

Hello, World
Welcome,
Hope you are doing great!