c#中 这 ^= 是什么运算符 谢谢
a ^= b
相当于
a = a ^ b
^ 表示 按位异或
http://msdn.microsoft.com/zh-cn/library/y2hf3412.aspx
^= 表示 按位异或赋值
http://msdn.microsoft.com/zh-cn/library/c1bc2s4b.aspx