C# Tutorial - SoloLearn - Learn To Code For FREE!8
C# Tutorial - SoloLearn - Learn To Code For FREE!8
Basic Concepts
XP 108
Your First C# Program
2/3
RA
KR
Your First C# Program UP
EE
Visual Studio will automatically generate some code for your project: 2ke
Res
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class Program
{
static void Main(string[] args)
{
}
}
}
You will learn what each of the statements does in the upcoming lessons.
For now, remember that every C# console application must contain a method (a function) named
Main. Main is the starting point of every application, i.e. the point where our program starts
execution from.
COURSES CODE PLAYGROUND DISCUSS
We will learn about classes, methods, arguments, and namespaces in the upcoming
TOP LEARNERS © 2020 SoloLearn Inc.
lessons.
https://www.sololearn.com/Play/CSharp/ 1/2
6/5/2020 C# Tutorial | SoloLearn: Learn to code for FREE!
Q&A
RA
KR
UP
EE
2ke
Res