C#控制台基础 将byte类型以十六进制字符串的形式输出

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_39561376/article/details/78157659


代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ConsoleApp4
{
    class Program
    {
        static void Main(string[] args)
        {
            Byte b = 255;
            Console.WriteLine(b.ToString("X2"));
            Console.ReadKey();
        }
    }
}

运行结果


猜你喜欢

转载自blog.csdn.net/qq_39561376/article/details/78157659