0
What is the purpose of semivolon at end of the interger / the line , it is possible to use other character
8 Réponses
0
A semicolon marks the end of a command. It is fixed you cannot choose an another character
0
can you teach me how to code for an microcontroller
0
No, you cannot use other characters than the semicolon.
This has to do with the syntax of C#.
The semicolon tells the compiler that there is the end of a statement, and therefore it is not changeble.
0
No sorry, I am c# specialist.
0
your answer made me to full stronger with my learning thankyou .
0
Your are welcome. Keep asking questions.
0
can you help me , I didn't understand console part
0
Console is the output window
Console.WriteLine
Write a line of text in this output window
What this line of text is, stands between the ()
Console.WriteLine("Hello World");
Write the line hello world to the output window.
Please have a look at the following video's
https://www.youtube.com/watch?v=Yj0G5UdBJZw&t=1343s
https://mva.microsoft.com/en-us/training-courses/c-fundamentals-for-absolute-beginners-16169?l=Lvld4EQIC_2706218949
Use the playground : Hello World
https://code.sololearn.com/cF9QR2KKsvQk/#cs