Skip to content

Instantly share code, notes, and snippets.

@kosanmil
Created February 2, 2019 20:20
Embed
What would you like to do?
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