Skip to content

Instantly share code, notes, and snippets.

@aprius
Created October 8, 2022 09:53
Show Gist options
  • Select an option

  • Save aprius/4dc09ef4e5aacba16e01bc01808f663f to your computer and use it in GitHub Desktop.

Select an option

Save aprius/4dc09ef4e5aacba16e01bc01808f663f to your computer and use it in GitHub Desktop.
// class cơ sở
public class Parent
{
protected void ParentFeature()
{
// chức năng kế thừa
}
}
// class dẫn suất (kế thừa class Parent)
public class Child : Parent
{
public ChildFeature()
{
// sử dụng chức năng được kế thừa
ParentFeature();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment