Part #1:
Topic: Start with asp.net C#
You have to install visual studio in your pc.
Download Visual Studio from: Download Visual Studio.
Install Guideline : Install Visual Studio
First programming 'Hello World'
1. Open 'Visual Studio' click on 'New Project' then select 'Console Application' name the application as 'HelloWrold' and select your folder path
[Shown image on ASP.NET tab]
2. Write the following code into the 'Program' class
static void Main(string[] args)
{
Console.WriteLine("Hello Wrold!");
Console.ReadKey();
}
3. Build your solution
[Shown image on ASP.NET tab]
4. Now start your application to click 'Start' on top bar.
[Shown image on ASP.NET tab]
This is your first app on c#.....Thank you.
No comments:
Post a Comment