摘要:
static void Main(string[] args) { string str = "宋军辉"; Console.WriteLine(bianma(str)); string str1 = bianma(str); Console.WriteLine(jiema(str1.Substring(0,16))); Console.Read(); } /// /// 将 字符串 转成 二进制 “10011100000000011100011111111101” /// /// /// public static string bianma(string s... 阅读全文
摘要:
using System; using System.IO;public class FileApp { public static void Main() { // 在当前目录创建一个文件myfile.txt,对该文件具有读写权限 FileStream fsMyfile = new FileStream("myfile.txt" , FileMode.Create, FileAccess.ReadWrite); // 创建一个数据流写入器,和打开的文件关联 StreamWriter swMyfile = new StreamWriter(fsMyfile); // 以文本 阅读全文