static NormalSorter()
 {
     Instance = new NormalSorter();
     FoCsEditor.AddSortingMode(Instance);
 }
Exemplo n.º 2
0
 static SearchSorter()
 {
     Instance = new SearchSorter();
     FoCsEditor.AddSortingMode(Instance);
 }
 static InvertedAlphaSorter()
 {
     Instance = new InvertedAlphaSorter();
     FoCsEditor.AddSortingMode(Instance);
 }
Exemplo n.º 4
0
 static AlphaSorter()
 {
     Instance = new AlphaSorter();
     FoCsEditor.AddSortingMode(Instance);
 }