0% found this document useful (0 votes)
150 views

C# Tutorial - SoloLearn - Learn To Code For FREE!8

iiiii

Uploaded by

Rajani Upadhyay
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
150 views

C# Tutorial - SoloLearn - Learn To Code For FREE!8

iiiii

Uploaded by

Rajani Upadhyay
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

6/5/2020 C# Tutorial | SoloLearn: Learn to code for FREE!

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!

Basic Concepts 198 COMMENTS


XP 108
Your First C# Program

Q&A
RA
KR
UP
EE
2ke

Res

© 2020 SoloLearn Inc.


https://www.sololearn.com/Play/CSharp/ 2/2

You might also like