AudioPlayer'(您是否缺少using指令或程序集引用?)(CS1061)

时间:2017-11-17 17:38:56

标签: c#

我尝试在跨平台的音频信使,我找到了一个插件.AudioRecorder,但我需要xaml和cs功能。

 Error CS1061: 'AudioPlayer' does not contain a definition for
 'FinishedPlaying' and no extension method 'FinishedPlaying' accepting
 a first argument of type 'AudioPlayer' could be found (are you missing
 a using directive or an assembly reference?) (CS1061) (Qbakbak.iOS)

请任何人帮助我..

1 个答案:

答案 0 :(得分:0)

1)确保您的引用正确且最新(您可能没有在项目中引用插件.dll)

2)检查你的using语句(使用AudioRecorder;)

3)确保您使用正确的命名空间

4)清理/重建项目

相关问题