【新人求教】VB转VC过程中的疑问
VB中的
If DL_temp And 1 Then
转换成VC的语言是不是
if (DL_temp && 1)
{
}
是这样么?
[解决办法]
if (DL_temp & 1)
发布时间: 2013-11-08 17:52:14 作者: rapoo
【新人求教】VB转VC过程中的疑问
VB中的
If DL_temp And 1 Then
转换成VC的语言是不是
if (DL_temp && 1)
{
}
是这样么?
[解决办法]
if (DL_temp & 1)