19
Answers

Interface in C#

Hi friends ,

I want to know that i have an interface named as person what is the correct way to implement it?
interface person {      String Name     {         get;         set;      }  }

Answers (19)