summaryrefslogtreecommitdiff
path: root/Program.cs
blob: e0a714975abfdc6c2fc23fecf51a0525bd9bc42f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;

namespace BCDD
{
    class Program
    {
        [STAThread]
        static void Main(string[] args)
        {
            OpenFileDialog fd = new OpenFileDialog();
            fd.Multiselect = true;
            if (fd.ShowDialog() == DialogResult.OK)
            {
                foreach (String filename in fd.FileNames)
                {
                    Console.WriteLine("Analyzing " + filename);
                    PBNFile file = new PBNFile(filename);
                }
                Console.WriteLine("Press any key to continue...");
                Console.ReadLine();
            }
        }
    }
}