Last change
on this file since 3509 was
2277,
checked in by gkronber, 15 years ago
|
Worked on merger tool to combine to CEDMA result sets. #719.
|
File size:
455 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Windows.Forms;
|
---|
5 |
|
---|
6 | namespace CedmaDatabaseMerger {
|
---|
7 | static class Program {
|
---|
8 | /// <summary>
|
---|
9 | /// The main entry point for the application.
|
---|
10 | /// </summary>
|
---|
11 | [STAThread]
|
---|
12 | static void Main() {
|
---|
13 | Application.EnableVisualStyles();
|
---|
14 | Application.SetCompatibleTextRenderingDefault(false);
|
---|
15 | Application.Run(new MergerForm());
|
---|
16 | }
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.