Пример #1
0
        // Main function for where instructions are placed for computer to execute.
        static void Main()
        {
            Console.Write("Enter employee name: ");
            string name = Console.ReadLine();

            Console.Write("Enter employee ID: ");
            string id = Console.ReadLine();

            Console.Write("Enter the current number of employees: ");
            string n = Console.ReadLine();

            EmployeeInfo.employeeCounter = Int32.Parse(n);  // Converts string entry to integer 32 bit.
            EmployeeInfo.AddEmployee();

            Console.WriteLine();                                                               // Line break
            EmployeeInfo.Employee1(name, id);                                                  // Outputs employee name & ID function.
            Console.WriteLine("Number of current employees: " + EmployeeInfo.employeeCounter); // Outputs employee counter.
            Console.ReadLine();                                                                //Keeps console window up after compiling the code. Waits for an entry of text.
        }