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

วิธี Convert.ToChar ใน C #


วิธี Convert.ToChar ใช้เพื่อแปลงค่าที่ระบุเป็นจำนวนเต็ม Unicode

เราได้ประกาศตัวแปร sbyte แล้ว

sbyte byteVal = 200;

ตอนนี้ ใช้เมธอด Convert.ToChar() เพื่อแปลงค่า sbyte เป็นจำนวนเต็ม Unicode

charVal = Convert.ToChar(b);

เรามาดูตัวอย่างกันต่อ

ตัวอย่าง

using System;
public class Demo {
   public static void Main() {
      sbyte[] byteVal = { 92, 111, 115 };
      char charVal;
      foreach (sbyte b in byteVal) {
         charVal = Convert.ToChar(b);
         Console.WriteLine("{0} converted to '{1}'", b, charVal);
      }
   }
}

ผลลัพธ์

92 converted to '\'
111 converted to 'o'
115 converted to 's'