【C#每日一贴】ArrayList 转换成byte数组

// C# ArrayList 转换成byte数组
ArrayList al = new ArrayList();
byte[] x = (byte[])al.ToArray(typeof(byte));
相关文章
相关标签/搜索