Ejemplo n.º 1
0
        private void Add(int _nom, string _text)
        {
            ans a = new ans();

            a.nom  = _nom;
            a.text = _text;
            answers.Add(a);
        }
Ejemplo n.º 2
0
        private void Add(bool _isyes, int _nom, string _text, double _mark)
        {
            ans a = new ans();

            a.nom   = _nom;
            a.text  = _text;
            a.Mark  = _mark;
            a.isYes = _isyes;
            answers.Add(a);
        }
Ejemplo n.º 3
0
 private void Add(int _nom, string _text)
 {
     ans a = new ans();
       a.nom = _nom;
       a.text = _text;
       answers.Add(a);
 }