C# Registering Delegate in Interface throw Target Framework Error
Advertisements I am working on Azure Function FunctionA that is TargetFramework netcoreapp3.1. This FunctionA calls another project for services whose TargetFramework is netstandard2.0. In these service I have interface where I am trying to register Delegates but unable to do so and getting version error; reference below; public interface ICustomerServices { delegate Task<IEnumerable<string>> AppCustomerListHandler(); Task<string>… Read More C# Registering Delegate in Interface throw Target Framework Error