class Program
{
private static bool _ret = true;
static void Main()
{
_ret &= Method();
Console.WriteLine(_ret);
Console.Read();
}
private static bool Method()
{
_ret &= false;
return true;
}
}
我们在我们正在开发的一个更大的应用程序中遇到了这个问题,并且想知道它是否是预期的功能?这是用 c# 和 Visual Studio 2010 编写的