Last active
July 15, 2022 09:22
-
-
Save htbkoo/eb0e93160926ef2fd990600b4c3098c5 to your computer and use it in GitHub Desktop.
Some temporary workspace
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
| using System; | |
| using System.Collections.Generic; | |
| namespace SomeNamespace | |
| { | |
| enum OperationType | |
| { | |
| } | |
| interface IOperator | |
| { | |
| int operate(); | |
| } | |
| class OperatorA implements IOperator | |
| { | |
| int operate() { | |
| } | |
| } | |
| class MainClass | |
| { | |
| Dictionary<OperationType, IOperator> operatorsMapping = new Dictionary<OperationType, IOperator>(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment