Beispiel #1
0
 private void btnDataException_Click(object sender, EventArgs e)
 {
     try
     {
         var exp = new XExp();
         exp.Data.Add("test data Key", "string Value");
         exp.Data.Add("test data Key2", 25156);
         throw exp;
     }
     catch { }
 }
 private void btnDataException_Click(object sender, EventArgs e)
 {
     try
     {
         var exp = new XExp();
         exp.Data.Add("test data Key", "string Value");
         exp.Data.Add("test data Key2", 25156);
         throw exp;
     }
     catch { }
 }