Пример #1
0
 public static ONDA CreateONDA(long id, string vetor, int length)
 {
     ONDA oNDA = new ONDA();
     oNDA.id = id;
     oNDA.vetor = vetor;
     oNDA.length = length;
     return oNDA;
 }
Пример #2
0
 public void AddToONDA(ONDA oNDA)
 {
     base.AddObject("ONDA", oNDA);
 }