C# 将 Int 转换为 Char

Harshit Jindal 2023年1月30日 2022年4月20日
  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 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