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!

更新于:2020 年 6 月 20 日

329 次浏览

开启您的 职业生涯

完成课程后获得认证

开始
广告