当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# ASCII Char转Byte用法及代码示例


给定一个字符,任务是将其转换为ASCII 字符转换为 C# 中的一个字节。

例子:

Input: chr = 'a'
Output: 97

Input: chr = 'H'
Output: 72

方法 1:简单方法

Step 1: Get the character.

Step 2: Convert the character using the Byte struct

byte b = (byte) chr;

Step 3:Return or perform the operation on the byte 

下面是上述方法的实现:

C#


// C# program to convert 
// ascii char to byte.
   
using System;
public class GFG{
   
    static public void Main ()
    { 
        char ch = 'G'; 
   
        // Creating byte 
        byte byt; 
   
        // converting character into byte 
        byt = (byte)ch; 
   
        // printing character with byte value
        Console.WriteLine("Byte of char \'" + ch + "\' : " + byt);
    } 
}

输出:

Byte of char 'G' : 71

方法二:使用Convert.ToByte(String, IFormatProvider)() 方法:此方法是 Convert 类方法。它用于将其他基本数据类型转换为字节数据类型。

用法:

byte byt = Convert.ToByte(char); 

下面是上述方法的实现:

C#


// C# program to convert 
// ascii char to byte.
   
using System;
public class GFG{
   
    static public void Main ()
    { 
        char ch = 'G'; 
   
        // Creating byte 
        byte byt; 
   
        // converting character into byte 
        // using Convert.ToByte() method
        byt = Convert.ToByte(ch); 
   
        // printing character with byte value
        Console.WriteLine("Byte of char \'" +
                    ch + "\' : " + byt);
    } 
}

输出:

Byte of char 'G' : 71

方法三:使用BitConverter()[0] 方法:Encoding.ASCII.GetBytes() 方法用于接受字符串作为参数并获取字节数组。因此GetBytes()[0]用于将字符转换为字符串后获取字节。

用法:

byte byt = Encoding.ASCII.GetBytes(string str)[0]; 

Step 1: Get the character.

Step 2: Convert the character into string using ToString() method.

Step 3: Convert the string into byte using the GetBytes()[0] Method and store the converted string to the byte.

Step 4:Return or perform the operation on the byte.

下面是上述方法的实现:

C#


// C# program to convert 
// ascii char to byte.
   
using System;
using System.Text;
public class GFG{
   
    static public void Main ()
    { 
        char ch = 'G'; 
         
        // convert to string
        // using the ToString() method
        string str = ch.ToString();
         
        // Creating byte 
        byte byt; 
   
        // converting character into byte 
        // using GetBytes() method
        byt = Encoding.ASCII.GetBytes(str)[0]; 
   
        // printing character with byte value
        Console.WriteLine("Byte of char \'" +
                          ch + "\' : " + byt);
    } 
}

输出:

Byte of char 'G' : 71



相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 How to Convert ASCII Char to Byte in C#?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。