Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created September 16, 2017 15:33
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 dance2die/8cee8a9abcd8fcec8ce6f5c35789705e to your computer and use it in GitHub Desktop.
Save dance2die/8cee8a9abcd8fcec8ce6f5c35789705e to your computer and use it in GitHub Desktop.
Children with backing field
private readonly Dictionary<char, TrieNode> _children = new Dictionary<char, TrieNode>();
public Dictionary<char, TrieNode> Children
{
get { return _children; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment