예제 #1
0
파일: Forums.cs 프로젝트: xiongeee/BBX
 private static bool ValidateSpecialUserPerm(string permUserList, int userId, ForumSpecialUserPower forumSpecialUserPower)
 {
     if (!permUserList.IsNullOrEmpty())
     {
         ForumSpecialUserPower forumSpecialUserPower2 = (ForumSpecialUserPower)Forums.GetForumSpecialUserPower(permUserList, userId);
         if ((forumSpecialUserPower2 & forumSpecialUserPower) > (ForumSpecialUserPower)0)
         {
             return(true);
         }
     }
     return(false);
 }