internal interface IStudentrule
{
bool arriveontime();
bool IsHomeworkDone();
} internal class Student : IStudentrule
{
public bool arriveontime()
{
return true;
}
public bool IsHomeworkDone()
{
return false;
}
}
آفرین
چه تمرین خوبی بود