Esempio n. 1
0
 public Matrix(int length)
 {
     Instances = 0;
     Info      = new Tools.Triple();
     Content   = new List <Tuple <string, bool, int> > [length];
     for (int i = 0; i < length; i++)
     {
         Content[i] = new List <Tuple <string, bool, int> >();
     }
 }
Esempio n. 2
0
        public Matrix(int length)
        {
            Instances = 0;
            Info = new Tools.Triple();
            Content = new List<Tuple<string, bool,int>>[length];
            for (int i = 0; i < length; i++)
            {
                Content[i] = new List<Tuple<string, bool,int>>();

            }
        }