Esempio n. 1
0
        public ScanEngine()
        {
            tree = new Tree();
            AVBase avBase = new AVBase();

            tree = avBase.LoadRecords();
        }
Esempio n. 2
0
 private void button2_Click(object sender, EventArgs e)
 {
     if (textBox1 != null && textBox2 != null && textBox3 != null && textBox4 != null)
     {
         AVBase avBase = new AVBase();
         avBase.AddBase(new ThreadSignature(textBox1.Text, textBox2.Text, Convert.ToUInt64(textBox3.Text), Convert.ToUInt64(textBox4.Text)));
     }
 }