Answers for "when do i need to end a sentence with ; in c#"

C#
1

when do i need to end a sentence with ; in c#

//after every sentence like int a,b ;
//and not in a places like this :
if(a <= b) 
{
  //you don't place ; in the } place
  Console.WriteLine("a <= b"); //after this you need to place ;
}
Posted by: Guest on June-12-2020

Code answers related to "when do i need to end a sentence with ; in c#"

C# Answers by Framework

Browse Popular Code Answers by Language