Skip to content

Commit

Permalink
V0.1
Browse files Browse the repository at this point in the history
Initial
  • Loading branch information
ZhangQiang committed Apr 8, 2017
1 parent 3e10d37 commit 16369f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Binary file modified LibrarySolution.v12.suo
Binary file not shown.
9 changes: 8 additions & 1 deletion ThreadExample/Program.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading;
Expand All @@ -10,7 +11,13 @@ class Program
{
static void Main(string[] args)
{

BackgroundWorker bw = new BackgroundWorker();
bw.DoWork += bw_DoWork;
}

static void bw_DoWork(object sender, DoWorkEventArgs e)
{
throw new NotImplementedException();
}
}
}

0 comments on commit 16369f5

Please sign in to comment.