在C# 中将byte转换为int和int转换为byte

在c#中简单的int和byte数组互相转换 

 int   s   =   100; 
  byte[]   shi   =   System.BitConverter.GetBytes(s);        
  int   sh   =   System.BitConverter.ToInt32(shi,0); 

你可能感兴趣的:(C#,byte)