示例#1
0
        public static Char[] ReadCharArray(this ObjectReader reader)
        {
            var bytes = reader.ReadByteArray();

            return(reader.Encoding.GetChars(bytes));
        }