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

การแปลงโดยนัยจาก Char เป็นทศนิยมใน C #


หากต้องการแปลงถ่านเป็นทศนิยมโดยปริยาย ให้ตั้งค่าอักขระเป็นอันดับแรก

char c = 'p';

หากต้องการแปลงอักขระเป็นทศนิยม ให้กำหนดค่า

decimal dec;
dec = c;

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

ตัวอย่าง

using System;
public class Demo {
   public static void Main() {
      char c = 'p';
      decimal dec;
      Console.WriteLine("Implicit conversion from Char to Decimal");
      dec = c;
      Console.WriteLine("Decimal : "+dec);
   }
}

ผลลัพธ์

Implicit conversion from Char to Decimal
Decimal : 112