Example #1
0
 private TemplatePool()
 {
     list = new DoubleLinkedList();
 }
Example #2
0
 private TemplatePool(string tmplDir, int capacity)
 {
     list = new DoubleLinkedList();
     TemplatePool.tmplDir  = tmplDir;
     TemplatePool.capacity = capacity;
 }