About

Sunday, September 15, 2019

Start New Project with Visual Studio Community version


Step 1 : Start/Open Visual Studio
Step 2 : 
File --> New-->Projects
  
Step 3 : Create New Console Project


Step 4 : Add hello word text and run the project

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp3
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello Prasad KM");
            Console.Read();
        }
    }
}
Step 5 : Press build -->Build Solution(No compile error)
Step 6 : Press Debug-->Run the project
Step 7 : Expected result in console prompt 

Hello Prasad KM on console application prompt:




Conclusion :
How we can create the simple application using visual studio.

Some one can suggest me I have missed in above steps thank you











0 comments:

Post a Comment