Exemple #1
0
 public static QRS CreateQRS(long id, string vetor, int length)
 {
     QRS qRS = new QRS();
     qRS.id = id;
     qRS.vetor = vetor;
     qRS.length = length;
     return qRS;
 }
Exemple #2
0
 public void AddToQRS(QRS qRS)
 {
     base.AddObject("QRS", qRS);
 }