在C#中,下面关于接口的定义正确的是( )(选择一项)
A.
public interface IStudentService{ public string addStudent(); }
B.
public interface IStudentService{ string addStudent(){//...} }
C.
public interface IStudentService {public string addStudent(){//...} }
D.
public interface IStudentService{ string addStudent(); }