C# 將 Int 轉換為 Char

Harshit Jindal 2023年10月12日
  1. C# 中使用顯式型別轉換 Char 將 Int 轉換為 Char
  2. C# 中使用 Convert.ToChar() 方法將 Int 轉換為 Char
C# 將 Int 轉換為 Char

本教程將介紹在 C# 中將 int 轉換為 char 的不同轉換方法。

你可以在本文中檢視如何在 C# 中將 char 轉換為 int

C# 中使用顯式型別轉換 Char 將 Int 轉換為 Char

通過鍵入型別名稱來進行顯式型別轉換是所有語言中使用的最通用和最流行的方法。下面的程式碼顯示了相同的 C# 演示。

using System;

public class Program {
  public static void Main() {
    Console.WriteLine("(char)102 is {0}", (char)102);
  }
}

輸出:

(char)102 is f

在上面的示例中,我們演示瞭如何在 C# 中將 int 型別轉換為 char。

C# 中使用 Convert.ToChar() 方法將 Int 轉換為 Char

C# 提供了一種將型別轉換為 char Convert.ToChar() 的顯式方法。我們可以將要型別轉換的整數作為引數傳遞,該方法將返回相應的字元。

using System;

public class Test {
  public static void Main() {
    int i = 65;
    char c = Convert.ToChar(i);
    Console.WriteLine(c);
  }
}

輸出:

A
作者: Harshit Jindal
Harshit Jindal avatar Harshit Jindal avatar

Harshit Jindal has done his Bachelors in Computer Science Engineering(2021) from DTU. He has always been a problem solver and now turned that into his profession. Currently working at M365 Cloud Security team(Torus) on Cloud Security Services and Datacenter Buildout Automation.

LinkedIn

相關文章 - Csharp Data Type