摘要: 免责申明(必读!):本博客提供的所有教程的翻译原稿均来自于互联网,仅供学习交流之用,切勿进行商业传播。同时,转载时不要移除本申明。如产生任何纠纷,均与本博客所有人、发表该翻译稿之人无任何关系。谢谢合作!原文链接地址:http://www.codeproject.com/Tips/80953/Converting-VS2010-Solution-to-VS2008如果你使用VS2010的任何版本写代码,那么在VS2008中就不能打开VS2010的解决方案了,为此,通过以下三步就可以解决了一.对于工程名.sln;1.用你喜欢的编辑器打开sln文件,比如notepad++2.找到下面的字符串Micr 阅读全文
posted @ 2012-01-25 15:21 lazycoding 阅读(4865) 评论(7) 推荐(2)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Security.Cryptography;namespace CTest{ class Program { static void Main(string[] args) { Console.WriteLine("*******MD5加密工具*********"); while (true) { ... 阅读全文
posted @ 2012-01-25 11:47 lazycoding 阅读(312) 评论(0) 推荐(0)