Trending Interface Architecture Discussions

Follow

Ask the Community


Ask any professional question and get answers from other specialists.

Stream language
awais awais's image  
Answer added by  awais awais, Lead c# Developer, Integrated Security solution
7 years ago

i will show the code example public abstract class Employee{ public virtul string FullNamePrint() { return "Awais Shabir"; } } // Interface Example   Public Int ... See More

Abhijeet Saxena's image  
Answer added by  Abhijeet Saxena, Software Engineering Analyst, Accenture Services Pvt. Ltd
7 years ago

Abstract class methods may have implementation i.e. it may contain non-abstract methods. Interface will not have any kind of implementation in it. Scenarios to choose bet ... See More