[Solved] Can we call interface methods from windows forms in c#? [closed]

[ad_1] Yes, it’s a common practise in any OOP based language to use only the definition of an object so that implementation details can be changed at a later time Let’s say you have the following interface public interface ISearchProvider { ISearchResult Search(ISearchRequest request); } If you now implement a property inside your windows forms, … Read more