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;
}
}
We came across this issue in a larger application we are developing and was wondering if it was expected functionality? This is written in c# with Visual Studio 2010