// Token: 0x0600137D RID: 4989 RVA: 0x00022C68 File Offset: 0x00020E68 public static string BitString(byte[] bytes) { StringBuilder stringBuilder = new StringBuilder(); for (int i = bytes.Length - 1; i >= 0; i--) { stringBuilder.Append(CmunePrint.BitString(bytes[i])).Append(' '); } return(stringBuilder.ToString()); }
// Token: 0x0600137B RID: 4987 RVA: 0x0000BF55 File Offset: 0x0000A155 public static string BitString(int x) { return(CmunePrint.BitString(BitConverter.GetBytes(x))); }
// Token: 0x0600137C RID: 4988 RVA: 0x0000BF62 File Offset: 0x0000A162 public static string BitString(string x) { return(CmunePrint.BitString(Encoding.Unicode.GetBytes(x))); }
// Token: 0x06001379 RID: 4985 RVA: 0x0000BF48 File Offset: 0x0000A148 public static void DebugBitString(byte x) { Debug.Log(CmunePrint.BitString(x)); }