Created
October 8, 2022 09:53
-
-
Save aprius/4dc09ef4e5aacba16e01bc01808f663f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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