Created
February 2, 2019 19:55
-
-
Save kosanmil/cca4d11d3fb4d7c3d64de4c7114efc7b to your computer and use it in GitHub Desktop.
This file contains 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
var visitor = new FindEmptyProcessUnitsVisitor(); | |
processUnitToCheck.AcceptVisitor(visitor); | |
var emptyProcessUnits = visitor.EmptyProcessUnits; | |
Console.Error.WriteLine("Found {0} empty process units", emptyProcessUnits.Count); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment