We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c6edb5 commit 05c138dCopy full SHA for 05c138d
CS/Program.cs
@@ -1,8 +1,4 @@
1
-using System;
2
-using System.Collections.Generic;
3
using System.Diagnostics;
4
-using System.Linq;
5
-using System.Windows.Forms;
6
7
namespace MasterDetailExample
8
{
@@ -11,8 +7,9 @@ static class Program
11
/// <summary>
12
/// The main entry point for the application.
13
9
/// </summary>
14
- [STAThread]
15
10
static void Main() {
+ MergeProcessor mProcessor = new MergeProcessor();
+ mProcessor.Start();
16
var p = new Process();
17
p.StartInfo = new ProcessStartInfo(@"result.docx") {
18
UseShellExecute = true
0 commit comments