变量名 类型
A 字节集
----------------------------
A = 取空白字节集 (25)
对应C#
byte[] A = new byte[25];
byte[] A 有值需要将 byte[] A 打印出来和e语言一样:
---------------------------------------------------------------
string 结果 = 打印字节集(A);
Console.WriteLine(结果);
---------------------------------------------------------------
public static string 打印字节集(byte[] a)
{
if (null == a || a.Length == 0)
return null;