Integrated Development Environment (IDE)
Visual Studio is like a super toolbox for computer programmers made by Microsoft. It helps them do many things like writing and fixing code, managing projects, and more. It’s great because it works with lots of different programming languages and can be used to make programs for computers, the internet, phones, and even cloud apps.
In simple terms, it’s a powerful tool that makes the life of a programmer easier.
- Link to download : https://visualstudio.microsoft.com/vs/community/
Reference link how to download – https://www.youtube.com/watch?v=Ivvwh-7H2ek&ab_channel=AmitThinks
Typical C# Program
- Code is written inside code blocks(class).
- Method/Function are the action events.
- C# program execution starts from main method.
class Person
{
public static void Main(string[] args)
{
int age = 10;
string name = “sohail”;
System.Console.WriteLine($”Hi, I’m {name} and I’m {age} years old.”);
}
}