c# – 无法将类型为’System.Byte []’的对象强制转换为’System.IConvertible’

c# – 无法将类型为’System.Byte []’的对象强制转换为’System.IConvertible’,第1张

概述FMT fmt=new FMT(); public void ReadFmtHeader(){ fmt.s_Sub_Chunk_ID_1 = reader.ReadBytes(4); fmt.ui_Sub_Chunk_Size_ID_1 = reader.ReadBytes(4); fmt.us_Audio_Format = reader.ReadBytes(2
FMT fmt=new FMT();    public voID ReadFmtheader(){    fmt.s_Sub_Chunk_ID_1 = reader.ReadBytes(4);    fmt.ui_Sub_Chunk_Size_ID_1 = reader.ReadBytes(4);    fmt.us_Audio_Format = reader.ReadBytes(2);    fmt.us_Num_Channels = reader.ReadBytes(2);    fmt.ui_Sample_Rate = reader.ReadBytes(4);    fmt.ui_Byte_Rate = reader.ReadBytes(4);    fmt.us_Block_Align = reader.ReadBytes(2);    fmt.us_Bits_Per_Sample = reader.ReadBytes(2);    if (Convert.ToInt32(fmt.ui_Sub_Chunk_Size_ID_1) == 18)// Exception thrown on this line    {        // Read any extra values        int fmtExtraSize = reader.ReadInt16();        reader.ReadBytes(fmtExtraSize);    }}

我正在尝试读取波形文件,然后使用标题信息重新创建它并保存到文件.
我不知道是什么问题.任何人都可以帮我吗?

解决方法 你不能使用Convert.ToInt32将byte []转换为int;你需要 use a BitConverter. 总结

以上是内存溢出为你收集整理的c# – 无法将类型为’System.Byte []’的对象强制转换为’System.IConvertible’全部内容,希望文章能够帮你解决c# – 无法将类型为’System.Byte []’的对象强制转换为’System.IConvertible’所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1262912.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存