console application add "pause" function

    using System;
using System.Collections.Generic;
using System.Text;

namespace Pause {
            class Program {
                        static void Main(string[] args)
                        {
                                    Console.WriteLine("Hello");
                                    Console.ReadLine(); //Pause
                        }
            }
}

Comments

Popular posts from this blog

How to write data into a excel file using vbscript

Format date as yyyy-mm-dd using vbscript