Possible Duplicate:
Is there a reason you can not define the access modifier on a method or in an interface?
Hello,
I'm curious about interfaces. Let's say I've the following interface's definition
public interface IPersone
{
string FirstName { get; set; }
string LastName { get; set; }
int CalculateAge(int YearOfBirth);
}
Why there's no modifiers (public, private, protected) in front of methods and properties defining an interface? Is there any reason for that?
Thanks for helping