static bool Method1()
{
Console.WriteLine("in Method1");
return false;
}
static bool Method2()
{
Console.WriteLine("in Method2");
return true;
}
static void Main(string[] args)
{
if (Method1() && Method2())
{
Console.WriteLine("inside if");
}
}
@ftaeml `Method2` in not executed because `Method1` returned `false`. It will be executed only if `Method1` returns `true` - that's how && (AND) operator works in the most programming languages
2020 Feb 16, 12:47:29 AM
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати