// cs_operator_or_assignment.cs
using System;
class MainClass
{
static void Main()
{
int a = 0x0c;
a |= 0x06;
Console.WriteLine("0x{0:x8}", a);
bool b = true;
b |= false;
Console.WriteLine(b);
}
}
输出
0x0000000e
True
posted on
2011-09-02 16:52upwifi
阅读(520)
评论(1)
收藏举报