
ASP.NET
Terry_Zeng
这个作者很懒,什么都没留下…
展开
-
ASP.NET(C#)文件读写函数
<br />using System;<br />using System.Data;<br />using System.IO;<br />using System.Text;<br />public void WriteFile(string content, string fileSavePath)<br />{<br /> if (System.IO.File.Exists(fileSavePath))<br /> {<br /> System转载 2011-03-29 10:08:00 · 484 阅读 · 0 评论 -
The different from Const and readonly.
<br />readonly 关键字与 const 关键字不同。<br /><br />1. const 字段只能在该字段的声明中初始化。<br /> readonly 字段可以在声明或构造函数中初始化。因此,根据所使用的构造函数,readonly 字段可能具有不同的值。<br />2. const 字段是编译时常数,而 readonly 字段可用于运行时常数。<br />3. const 默认就是静态的,而 readonly 如果设置成静态的就必须显示声明。<br />4.const 对于引用类型的常转载 2011-04-14 10:20:00 · 444 阅读 · 0 评论 -
无法安装MVC3,错误提示:安装KB2483190(vs10-kb2483190)出错
无法安装MVC3,错误提示:安装KB2483190(vs10-kb2483190)出错。安装指导:" An update for Visual Studio 2010 that enables support for Razor syntax. (For details, see KnowledgeBase article 2483190.)"解决1:1、解压 MVC3安装文原创 2012-01-13 16:18:32 · 4247 阅读 · 1 评论