字符串转换成16 进制表示
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace _16__进制转换{ class Program { static void Main(string[] args) { string input = "Hello WorldA"; char[] values = input.ToCharArray(); // 字符转换成char 数组 ... 阅读全文
posted @ 2012-07-24 13:15 盖天00 阅读(526) 评论(0) 推荐(0) 编辑