Beispiel #1
0
        public static TrieTree LoadFromDataProvider(IDataProvider provider)
        {
            TrieTree tt = TrieTree.GetInstance();

            tt.Load(provider);
            return(tt);
        }
Beispiel #2
0
 public static TrieTree GetInstance()
 {
     if (_instance == null)
     {
         _instance = new TrieTree();
     }
     return(_instance);
 }
Beispiel #3
0
 public static TrieTree GetInstance()
 {
     if (_instance == null)
     {
         _instance = new TrieTree();
     }
     return _instance;
 }