我正在尝试将字节的 MWArray 传递给函数。字节数组从 mp3 文件中获取数据。
现在我想将字节数组分配给 MWArray。
我的代码是这样的
string lSongFilePath = ConfigurationManager.AppSettings["SongFilePath"].ToString();
lSongFilePath += "\\" + "Grand Piano - Fazioli - major A.wav";
FileStream fs = File.OpenRead(lSongFilePath);
try
{
byte[] bytes = new byte[fs.Length];
var read = (fs.Read(bytes, 0, Convert.ToInt32(fs.Length)));
MWArray[] in_Arr = new MWArray[(int)read];
MWArray[] out_Arr = null;// = new MWArray[15];
ChordRecognizer hj = new ChordRecognizer();
hj.estimateTuning(4,ref out_Arr, in_Arr);
fs.Close();
}
catch(Exception ex)
{
string s = ex.Message;
}
这一行只提到了数组的大小,而我也想将数据分配给数组。请帮忙
MWArray[] in_Arr = new MWArray[(int)read];