Skip to content

Instantly share code, notes, and snippets.

@PhiHuyHoang
Created October 2, 2018 21:27
Show Gist options
  • Save PhiHuyHoang/3bb930817ad012c7ca1e0d3fbc02f681 to your computer and use it in GitHub Desktop.
Save PhiHuyHoang/3bb930817ad012c7ca1e0d3fbc02f681 to your computer and use it in GitHub Desktop.
public interface Girl
{
void check();
}
class Vietnamese : Girl
{
public void check()
{
Console.WriteLine("Girl from Vietnam");
}
}
class Chinese : Girl
{
public void check()
{
Console.WriteLine("Girl from China");
}
}
class Japanese : Girl
{
public void check()
{
Console.WriteLine("Girl from Japan");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment