Skip to content

Instantly share code, notes, and snippets.

@chuongmep
Created June 3, 2021 10:21
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 chuongmep/bcc47d3fb57775652eb4d2334b151089 to your computer and use it in GitHub Desktop.
Save chuongmep/bcc47d3fb57775652eb4d2334b151089 to your computer and use it in GitHub Desktop.
public static List<Element> GetElementConnectedContinuous(this Element e)
{
Dictionary<string, Element> OutElements = new Dictionary<string, Element>();
List<Element> collector = Collector(e, OutElements);
return collector;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment