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

แสดง Int32 เป็นสตริงใน C #


Int32 แสดงถึงจำนวนเต็มที่ลงนามแบบ 32 บิต หากต้องการแสดงเป็นสตริง ให้ใช้เมธอด ToString()

ประการแรก ประกาศและเริ่มต้นตัวแปร Int32

int val = 1023;

ตอนนี้แสดงเป็นสตริง

val.ToString()

เรามาดูตัวอย่างฉบับสมบูรณ์กัน

ตัวอย่าง

using System;
class Demo {
   static void Main() {
      int val = 1023;
      Console.Write("Integer converted to string = "+val.ToString());
   }
}

ผลลัพธ์

Integer converted to string = 1023