Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save modulexcite/4b71a077b4bc11778e92 to your computer and use it in GitHub Desktop.
Save modulexcite/4b71a077b4bc11778e92 to your computer and use it in GitHub Desktop.
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