using System; interface IPlay { string play(); } class hockey : IPlay { string IPlay.play() { return “yes ….hockey”; } } class cricket : IPlay { string IPlay.play() { return “cricket…”; } } class chess : IPlay { string IPlay.play() { return “chess”; } } class ui { public void…
View More Program for abstract class using C sharp Dot netUltimate Experience