关于运算符 & =,谁能告诉我该运算符的意思
今天看到一段程序:
if (...)
{
bool bIsAdmin = Thread.CurrentPrincipal.IsInRole("Admin");
m_buttonChangePassword.Enabled & = bIsAdmin;
}
其中的运算符 & = 是什么意思?
今天看到一段程序:
if (...)
{
bool bIsAdmin = Thread.CurrentPrincipal.IsInRole("Admin");
m_buttonChangePassword.Enabled & = bIsAdmin;
}
其中的运算符 & = 是什么意思?
2006-02-03 21:42
2006-02-04 08:41
2006-02-04 14:38