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";);
}
}
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать