I have written this function:
public static Mp3FileReader GetSoundsFromFiles(byte[] bytes)
{
return new Mp3FileReader(new MemoryStream(bytes));
}
And I need to parse some byte arrays with keyword "params" instead of one. Can anyone help me?