Answers for "{} is this used for code blocks in c#"

C#
1

{} is this used for code blocks in c#

/* code blocks are the lines of code between {} */
// for example
if (1==1) 
{
  Console.WriteLine("fact"); }
// the code block would be Console.WriteLine("fact"); not sure if {} is 
// included in it.
Posted by: Guest on June-25-2021

C# Answers by Framework

Browse Popular Code Answers by Language