Sophie

Sophie

distrib > Mandriva > current > i586 > media > main-updates > by-pkgid > b5d6e5e84fc6929edbdeef5ef92c2500 > files > 979

boost-examples-1.42.0-3.2mdv2010.1.i586.rpm

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace distribution_explorer
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new DistexForm());
        }
    }
}