when do i need to end a sentence with ; in c# code example
Example: 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 ;
}