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
public abstract class Human { | |
public abstract void GoPee(); | |
} | |
public class Male : Human { | |
public override void GoPee(){ | |
console.log("Stand Up"); | |
} | |
} |
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
.monaco-editor.vs-dark.AdamCaviness-theme-monokai-dark-soda-themes-monokai-dark-soda-tmTheme .token.comment { color: rgba(140, 140, 140, 1); } | |
.monaco-editor.vs-dark.AdamCaviness-theme-monokai-dark-soda-themes-monokai-dark-soda-tmTheme .token.string { color: rgba(255, 238, 153, 1); } | |
.monaco-editor.vs-dark.AdamCaviness-theme-monokai-dark-soda-themes-monokai-dark-soda-tmTheme .token.constant.numeric { color: rgba(255, 128, 244, 1); } | |
.monaco-editor.vs-dark.AdamCaviness-theme-monokai-dark-soda-themes-monokai-dark-soda-tmTheme .token.constant.language { color: rgba(255, 128, 244, 1); } | |
.monaco-editor.vs-dark.AdamCaviness-theme-monokai-dark-soda-themes-monokai-dark-soda-tmTheme .token.constant.character { color: rgba(255, 128, 244, 1); } | |
.monaco-editor.vs-dark.AdamCaviness-theme-monokai-dark-soda-themes-monokai-dark-soda-tmTheme .token.constant.other { color: rgba(255, 128, 244, 1); } | |
.monaco-editor.vs-dark.AdamCaviness-theme-monokai-dark-soda-themes-monokai-dark-soda-tmTheme .token.variable { } | |
.monaco-editor.v |