아래 줄에서 :
//Folder.Attributes = FileAttributes.Directory | FileAttributes.Hidden | FileAttributes.System | FileAttributes.ReadOnly;
Folder.Attributes |= FileAttributes.Directory | FileAttributes.Hidden | FileAttributes.System | FileAttributes.ReadOnly;
Folder.Attributes |= ~FileAttributes.System;
Folder.Attributes &= ~FileAttributes.System;
무엇을 |=
(단일 파이프 동일) 및 &=
(단일 앰퍼샌드 동일) 평균의 C #
내가 다른 사람을 유지하여 시스템 속성을 제거 할을 ...
x = x | (y);
때문에 그것을 설명하는 더 나은 방법x |= y + z;
으로 동일하지 않습니다x = x | y + z;