Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะอ่านอินพุตเป็นสตริงใน C # ได้อย่างไร


หากต้องการอ่านอินพุตเป็นสตริงใน C # ให้ใช้เมธอด Console.ReadLine()

str = Console.ReadLine();

ด้านบนจะอ่านอินพุตเป็นสตริง คุณไม่จำเป็นต้องใช้วิธี Convert ที่นี่ เนื่องจากอินพุตจะใช้สตริงเป็นค่าเริ่มต้น

ตอนนี้แสดงสตริงที่ผู้ใช้ป้อน -

ตัวอย่าง

using System;
using System.Collections.Generic;

class Demo {
   static void Main() {
      string myStr;

      // use ReadLine() to read the entered line
      myStr = Console.ReadLine();

      // display the line
      Console.WriteLine("Result = {0}", myStr);
   }
}

ผลลัพธ์

Result =

ต่อไปนี้เป็นผลลัพธ์ สมมติว่าผู้ใช้ป้อน "Amit" เป็นอินพุต -

Result = amit