Skip to content

Instantly share code, notes, and snippets.

@mterwoord
Created August 22, 2016 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mterwoord/210245b8f39d1c4bd92176b246182868 to your computer and use it in GitHub Desktop.
Save mterwoord/210245b8f39d1c4bd92176b246182868 to your computer and use it in GitHub Desktop.
//Go through all the arguments
foreach (var argument in tmpStringArray)
{
//If the argument starts with the variable tag then....
if (argument.StartsWith(variableTag))
{
//Go through all the variables
foreach (var variable in variables)
{
//Check if the variable is valid
if (variable.Substring(variableTag.Length) == variables[k].Name)
{
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment