因为考虑到我下面我将写session cookies 等 操作类 ,与cache具有共性. 所以都统一继承了IHttpStorageObject abstract class 来保函数风格的统一 ,但是又为了调用方便,抽象中又使用了单例来简化调用. 使用方法很简单: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using Syste…
封装类: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Web.Caching; using System.Collections; using System.Linq.Expressions; namespace SyntacticSugar { /// <summary> /// ** 描述:缓存操作类…
1.读取文件 2.写入文件 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml; namespace BigData.Common.File { /// <summary> /// 文件操作类 /// </summary> public…
using System; using System.IO; using System.Web; namespace SEC { /**//// /// 对文件和文件夹的操作类 /// public class FileControl { public FileControl() { } /**//// /// 在根目录下创建文件夹 /// /// 要创建的文件路径 public void CreateFolder(string FolderPathName) { if(FolderPathNa…
今天继续分享C#4.0语法糖的扩展方法,这个方法也是我本人比较喜欢的方法.大家先想想比如我们以前写的原始类型不能满足现在的需求,而需要在该类型中添加新的方法来实现时大家会怎么做.我先说一下我没有学习到这个知识点之前做的方法: 最笨的办法就是修改原来的类型,然后添加一个方法来达到需求的变更,如下代码所示: public class KuozFF { public void NormalMethod() { Console.WriteLine("我是原始方法"); } public voi…
今天给大家分享一下C#语法糖的简单的两个知识点吧. 自动属性:在 C# 4.0 和更高版本中,当属性的访问器中不需要其他逻辑时,自动实现的属性可使属性声明更加简洁. 客户端代码还可通过这些属性创建对象. get and set accessors." id="mt3">如下面的示例所示声明属性时,编译器将创建一个私有的匿名支持字段,该字段只能通过属性的 get 和 set 访问器进行访问. 我们C#4.0以前的传统方式的属性是用来封装字段的,这里我简单的对比一下这两种方…