Why is the strong conversion of this byte ineffective? Shouldn't the result be 1

sadwind2024-01-08笔记341
using System;
using System.IO;
namespace HelloWorldApplication
{
  public enum XType : byte
  {
    T
  }
   class HelloWorld
   {
      static void Main(string[] args)
      {
     byte[] k = BitConverter.GetBytes((byte)XType.T);
         Console.WriteLine(k.Length);
         Console.ReadKey();
      }
   }
}

Solved, actually using GetBytes (short) instead of GetBytes (byte) function



relate content

php有内置函数array_unique可以用来删除数组中的重复值

array_unique -- 移除数组中重复的值array_unique说明array array_unique ( array array )array_unique() 接受 array 作为输...

初学COCOS 做一个人物行走动画

看了几天教程,今日尝试做了一个人物行走动画,点击人物时,切换为跑步,再点击时切换为行走。原理:即为一个节点挂一个动画组件,将事先准备好的素材导入,用动画组件做一个人物行走和跑步的序列帧动画,同时将准备...

FASTADMIN 个别页面不使用默认的layout(默认模板)

有的应用定义了默认模板layout,(protected $layout = 'default';)在方法实现时会自动加上定义的模板内容,而个别页面如弹窗我不想要页面头部和底部等&nb...

php转换中文简繁体

数据库中数据都是简体中文,而港台海外用户一般都用繁体,所以都搜不到内容。正在想法实现网站用户搜索,将用户搜入的繁体转换成简体,从而得到想要的结果。通过opencc4php 扩展实现简繁体转化 ,ope...

TP6 一条数据库查询代码 column索引值理解

// 返回数组 Db::table('think_user')->where('status',1)->column('name'...

JS/JQUERY 动态修改样式CSS

    $(".layui-table-box").css("border-width","0px"...

Post Reply    

◎Welcome to participate in the discussion.