Answers for "if else statement in csharp"

C#
2

if else statement c#

if (x == 0)
{
  Console.WriteLine("hello world");
}
else
{
  return 5;
}
Posted by: Guest on March-13-2022

C# Answers by Framework

Browse Popular Code Answers by Language