Skip to content

Instantly share code, notes, and snippets.

@kosanmil
Created February 2, 2019 20:20
Show Gist options
  • Save kosanmil/2145b2b9d32616c7096789aa64bebea5 to your computer and use it in GitHub Desktop.
Save kosanmil/2145b2b9d32616c7096789aa64bebea5 to your computer and use it in GitHub Desktop.
var visitor = new GetUnitByNameVisitor("Secret Agent");
processUnitToCheck.AcceptVisitor(visitor);
var returnedUnit = visitor.ReturnedUnit;
if (returnedUnit == null)
Console.WriteLine("Could not find Secret Agent.");
else
Console.WriteLine("Secret Agent found!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment