Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.88 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10.  
  11. namespace DogAtTheRaces1
  12. {
  13.     public partial class Form1 : Form
  14.     {
  15.         Guy[] guys = new Guy[3];
  16.         Bet[] bets = new Bet[3];
  17.         Label[] guylabel = new Label[3];
  18.         public Form1()
  19.         {
  20.             InitializeComponent();
  21.  
  22.         }
  23.         public void initializeGuys()
  24.         {
  25.             for (int i = 0; i < guys.Length; i++)
  26.             {
  27.                 guys[i] = new Guy();
  28.                 bets[i] = guys[i].bet;
  29.                 guys[i].label
  30.                
  31.             }
  32.             // labels for the guys
  33.  
  34.  
  35.         }
  36.  
  37.         private void Form1_Load(object sender, EventArgs e)
  38.         {
  39.  
  40.         }
  41.     }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement