Example #1
0
 public AllCollectionTypes()
 {
     IntArray    = new int[] {};
     IntList     = new List <int> {
     };
     StringArray = new string[] {};
     StringList  = new List <string> {
     };
     PocoArray   = new Poco[] {};
     PocoList    = new List <Poco> {
     };
 }
Example #2
0
 public AllCollectionTypes()
 {
     IntArray      = new int[] {};
     IntList       = new List <int> {
     };
     StringArray   = new string[] {};
     StringList    = new List <string> {
     };
     PocoArray     = new Poco[] {};
     PocoList      = new List <Poco> {
     };
     PocoLookup    = new Dictionary <string, List <Poco> > {
     };
     PocoLookupMap = new Dictionary <string, List <Dictionary <String, Poco> > > {
     };
 }