To conform to the following interface, which of its members need to be implemented?
public interface INameable
{
string FirstName { get; set; }
string LastName { get; }
}
To conform to the following interface, which of its members need to be implemented?
public interface INameable
{
string FirstName { get; set; }
string LastName { get; }
}