Пример #1
0
 public string[,] GetAllOptions()
 {
     string[,] table = new string[m_MaxID, 5];
     for (int i = 1; i <= m_MaxID; i++)
     {
         q = qs.GetByID(i);
         spp = qq.SHFQuesitonTosppQuestion(q);
         table[i - 1, 0] = i.ToString();
         table[i - 1, 1] = spp.aq;
         table[i - 1, 2] = spp.bq;
         table[i - 1, 3] = spp.cq;
         table[i - 1, 4] = spp.dq;
     }
     return table;
 }