我正在使用Xamarin开发和应用程序,并且试图遵循this guide来实现Xamarin Forms for UWP的实现和接口。

所以我在PCL中写了这个界面:

namespace MyApp {
public interface ISimplePdfLoader {

    void OpenLocal(string uri);

    void Load(object pdfDoc);
  }
}


在MyApp.UWP中,我创建了一个类:

[assembly: Dependency(typeof(SimplePdfLoader))]
namespace MyApp.UWP {
public class SimplePdfLoader : ISimplePdfLoader {

    public async void OpenLocal(string uri) {
        ...

        Load(doc);
    }

    public async void Load(object pdfObj) {
        ...
        }
    }
}
}


但是它继续显示error CS7036 No arguments matching the mandatory formal parameter 'loadHintArgument' of 'DependencyAttribute.DependencyAttribute (string, LoadHint)'被指定为MyApp.UWP C:\ Users ... \ workspace \ my-app \ MyApp \ MyApp.UWP \ SimplePdfLoader.cs 19
而且我无法编译该项目。

编辑:错误显示在[assembly: Dependency(typeof(SimplePdfLoader))]行下面

最佳答案

从顶部使用部分删除以下行

using System.Runtime.CompilerServices;


并添加以下内容

using Xamarin.Forms;

10-07 16:48