Example #1
0
        static string GetHighBitString(string s)
        {
            byte[] b = Lib.StringToBytes(s);
            for (int i = 0; i < b.Length; i++)
            {
                b[i] = (byte)(b[i] | 128);
            }

            return(Lib.BytesToString(b));
        }