[C#]byte

2022/2/6 20:42:23

本文主要是介绍[C#]byte,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

参考链接:

https://docs.microsoft.com/zh-cn/previous-versions/5bdb6693(v=vs.110)?redirectedfrom=MSDN

 

定义:

 

测试:

 1 using System;
 2 using UnityEngine;
 3 
 4 public class TestByte : MonoBehaviour
 5 {
 6     void Start()
 7     {
 8         //Convert.ToString(xxx, 2),转换为二进制字符串
 9         byte by;
10         by = 2;
11         print(Convert.ToString(by, 2));
12         by = 255;
13         print(Convert.ToString(by, 2));
14 
15         //0000 0010  |
16         //0000 0011  =
17         //0000 0011
18         by = 2 | 3;
19         print(Convert.ToString(by, 2));
20 
21         int a = 258;
22         print(Convert.ToString(a, 2));
23         print(Convert.ToString((byte)(a >> 8), 2));
24         print(Convert.ToString((byte)(a), 2));
25     }
26 }

 

输出:

 



这篇关于[C#]byte的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程