Guest User

Untitled

a guest
Jul 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. public partial class MainForm : Form
  2. {
  3.     string[] names;
  4.     public MainForm()
  5.     {
  6.         InitializeComponent();
  7.     }
  8.  
  9.     private void Form1_Load(object sender, EventArgs e)
  10.     {
  11.         System.Threading.Thread t = new System.Threading.Thread(LoadNames);
  12.         t.Start();
  13.     }
  14.  
  15.     private void LoadNames()
  16.     {
  17.         names = new string[] { "Bill", "Bob", "John", "Mike", "Susan",
  18.                     "Kristen", "Teresa" };
  19.         this.txtName.Text = names[3];
  20.     }
  21. }
Add Comment
Please, Sign In to add comment