Example #1
0
 // Token: 0x06001370 RID: 4976 RVA: 0x000226D0 File Offset: 0x000208D0
 public static string Flag <T>(T flag) where T : IConvertible
 {
     if (typeof(T).IsEnum)
     {
         return(CmunePrint.Flag(Convert.ToUInt32(flag), typeof(T)));
     }
     return(CmunePrint.Flag(Convert.ToUInt32(flag), 31));
 }
Example #2
0
 // Token: 0x0600136D RID: 4973 RVA: 0x0000BF0C File Offset: 0x0000A10C
 public static string Flag(short flag)
 {
     return(CmunePrint.Flag((uint)flag, 15));
 }
Example #3
0
 // Token: 0x0600136F RID: 4975 RVA: 0x0000BF17 File Offset: 0x0000A117
 public static string Flag(uint flag)
 {
     return(CmunePrint.Flag(flag, 31));
 }
Example #4
0
 // Token: 0x0600136B RID: 4971 RVA: 0x0000BEF9 File Offset: 0x0000A0F9
 public static string Flag(byte flag)
 {
     return(CmunePrint.Flag((uint)flag, 7));
 }