我在 Services 文件夹的 Xamarin 表单根目录中有一个接口类。
namespace FirstPrismApp.Services
{
public interface ITextToSpeech
{
void Speak(string text);
}
}
我无法在其他包含的项目(如 Android、IOS 和 UWP)中使用 Interface 类。
我在 Services 文件夹的 Xamarin 表单根目录中有一个接口类。
namespace FirstPrismApp.Services
{
public interface ITextToSpeech
{
void Speak(string text);
}
}
我无法在其他包含的项目(如 Android、IOS 和 UWP)中使用 Interface 类。