Exemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            List <string> markets = SelectedMarkets();
            string        matchid = "0";

            foreach (string market in markets)
            {
                string[] info = market.Split(',');
                matchid = info[1];
            }
            frmResultView f = new frmResultView(matchid);

            f.Show();
        }
 private void button1_Click(object sender, EventArgs e)
 {
     List<string> markets = SelectedMarkets();
     string matchid = "0";
     foreach (string market in markets)
     {
         string[] info = market.Split(',');
         matchid = info[1];
     }
     frmResultView f = new frmResultView(matchid);
     f.Show();
 }