如何在C#中创建String对象?

要在C#中创建字符串对象,请使用以下任何一种给定的方法。

  • 通过将字符串文字分配给String变量

  • 通过使用String类构造函数

  • 通过使用字符串串联运算符(+)

  • 通过检索属性或调用返回字符串的方法

  • 通过调用格式化方法将值或对象转换为其字符串表示形式

下面的示例显示了在C#中创建字符串对象的不同方法。

示例

using System;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         //从字符串文字和字符串连接
         string fname, lname;
         fname = "Brad ";
         lname = "Pitt";
         char []letters= { 'W', 'e', 'b'};
         string [] sarray={ "Web", "World"};
         string fullname = fname + lname;
         Console.WriteLine("Full Name: {0}", fullname);
         //通过使用字符串构造器{'W,'e','b'}; 
         string greetings = new string(letters);
         Console.WriteLine("Greetings: {0}", greetings);
         //methods returning string { "Web", "World" };
         string message = String.Join(" ", sarray);
         Console.WriteLine("Message: {0}", message);
         //格式转换值的方法
         DateTime waiting = new DateTime(2012, 10, 10, 17, 58, 1);
         string chat = String.Format("Message sent at {0:t} on {0:D}", waiting);
         Console.WriteLine("Message: {0}", chat);
      }
   }
}

输出结果

Full Name: Brad Pitt
Greetings: Web
Message: Web World
Message: Message sent at 5:58 PM on Wednesday, October 10, 2012