Topological Sorting
TopoSort is a static class that provides functionality to perform a topological sort on a collection of items with dependencies.
Sort
This method takes a source collection of items and a function that returns the dependencies of each item. It returns a sorted list of items based on their dependencies.
Example:
Last updated