Forked from rushfrisby/ruleplex_switch_pattern_example.cs
Last active
August 29, 2015 14:23
-
-
Save modulexcite/4b71a077b4bc11778e92 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
switch(policy.LanguageType) | |
{ | |
case LanguageTypes.CSharp: | |
// process c# rules | |
break; | |
case LanguageTypes.Python: | |
//process python rules | |
break; | |
case LanguageTypes.JavaScript: | |
//process javascript rules | |
break; | |
default: | |
//throw an error about not knowing how to process the rules | |
break; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment