class Program
{
static void Main(string[] args)
{
int x=1;
bool a = ++x * x > 3;
bool b = ++x*2;//请赋值
Console.WriteLine(a==b);
{
static void Main(string[] args)
{
int x=1;
bool a = ++x * x > 3;
bool b = ++x*2;//请赋值
Console.WriteLine(a==b);
2015-09-24