using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string[] files = System.Environment.GetCommandLineArgs();
if (files.Length > 1)
{
for (int i = 1; i < files.Length; i++)
{
System.Windows.Forms.MessageBox.Show(files[i]);
}
}
}
}
}