Creating a simple calculator step by step in C sharp -3

Make sure you have the following code in Program.cs.


Program.cs


using System;
using System.Windows.Forms;

namespace Calculator
{
    static class Program
    {
     
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Calculator());
        }
    }
}


In the next post I will show you the final part Calculator.


 Next:    Calculator Final part 4

No comments :

Post a Comment

Infolinks In Text Ads

these