Thursday, September 19, 2024 9:06:49 PM
> settings

Customize


Authenticate

> Program.cs
 /*
 * Bryan
 * Carpet Calculator
 */

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace bryan_carpetCalculator
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Main_Form());
        }
    }
}
All opinions represented herein are my own
- © 2024 itsthedevman
- build 3c15a1b