资源简介
C#常用源码
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
namespace WHC.OrderWater.Commons
{
///
/// 全局统一的缓存类
///
public class Cache
{
private SortedDictionaryject> dic = new SortedDictionaryject>();
private static volatile Cache instance = null;
private static object lockHelper = new object();
private Cache()
{
}
public void Add(string key object value)
{
dic.Add(key value);
}
public void Remove(string key)
{
dic.Remove(key);
}
public object this[string index]
{
get
{
if (dic.ContainsKey(index))
return dic[index];
else
return null;
}
set { dic[index] = value; }
}
public static Cache Instance
{
get
{
if (instance == null)
{
lock (lockHelper)
{
if (instance == null)
{
instance = new Cache();
}
}
}
return instance;
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 270336 2010-06-21 17:59 WHC.OrderWater.Commons\bin\Debug\log4net.dll
文件 1276720 2012-02-18 09:44 WHC.OrderWater.Commons\bin\Debug\Microsoft.Office.Interop.Excel.dll
文件 416544 2012-02-18 09:44 WHC.OrderWater.Commons\bin\Debug\Office.dll
文件 590336 2012-03-07 14:02 WHC.OrderWater.Commons\bin\Debug\WHC.OrderWater.Commons.dll
文件 1582592 2012-03-07 14:02 WHC.OrderWater.Commons\bin\Debug\WHC.OrderWater.Commons.pdb
文件 740278 2012-03-07 14:02 WHC.OrderWater.Commons\bin\Debug\WHC.OrderWater.Commons.xm
文件 1438 2010-08-10 09:59 WHC.OrderWater.Commons\Cache.cs
文件 20106 2011-07-12 21:08 WHC.OrderWater.Commons\CCalendar.cs
文件 13409 2010-07-19 11:30 WHC.OrderWater.Commons\CCalendarData.xm
文件 5918 2010-07-21 09:32 WHC.OrderWater.Commons\ChineseCalendar.cs
文件 991 2011-07-07 22:00 WHC.OrderWater.Commons\ClassDiagram1.cd
文件 15387 2012-03-06 17:37 WHC.OrderWater.Commons\Collections\Dictionary.cs
文件 550 2010-08-31 10:50 WHC.OrderWater.Commons\Collections\ICloneable.cs
文件 5515 2010-08-31 10:50 WHC.OrderWater.Commons\Collections\List.cs
文件 27402 2010-08-31 10:47 WHC.OrderWater.Commons\Collections\OrderedDictionary.cs
文件 6677 2010-08-31 10:47 WHC.OrderWater.Commons\Collections\OrderedDictionaryEnumerator.cs
文件 5257 2011-07-12 21:27 WHC.OrderWater.Commons\Collections\SortHelper.cs
文件 13635 2010-08-31 10:49 WHC.OrderWater.Commons\Collections\SyncDictionary.cs
文件 43919 2010-08-31 10:47 WHC.OrderWater.Commons\Collections\SyncList.cs
文件 13529 2010-08-31 10:47 WHC.OrderWater.Commons\Collections\SyncOrderedDictionary.cs
文件 7370 2011-06-21 09:26 WHC.OrderWater.Commons\Collections\ThreadSafeDictionary.cs
文件 5328 2011-06-21 09:22 WHC.OrderWater.Commons\Collections\ThreadSafeSortedList.cs
文件 6716 2010-08-06 09:22 WHC.OrderWater.Commons\CommandLine.cs
文件 23578 2011-06-26 11:22 WHC.OrderWater.Commons\CRegex.cs
文件 14714 2010-10-09 14:36 WHC.OrderWater.Commons\CSocket.cs
文件 16301 2011-07-04 20:33 WHC.OrderWater.Commons\CString.cs
文件 31508 2012-03-07 14:33 WHC.OrderWater.Commons\CText.cs
文件 2156 2010-07-19 11:30 WHC.OrderWater.Commons\CultureInfoUtil.cs
文件 13428 2010-12-08 15:21 WHC.OrderWater.Commons\Databa
文件 9767 2011-07-07 21:47 WHC.OrderWater.Commons\Databa
............此处省略165个文件信息
- 上一篇:VS2019图书管理系统-C#
- 下一篇:c#画图
相关资源
- C#与西门子1500通讯59060
- C# 斑马手持终端WINCE开发 MC32N0 vs2008
- Keep100sec
- PDFView PDF文件处理59003
- 读取GY-25倾斜度模块数据
- C# Cad2006二次开发之图形扩展属性读写
- C#-与西门子1200-1500-S7通讯(源码+文档
- C#逻辑思维100题
- 00后搞笑辞职信(C#源码)
- 大型比赛竞赛抽签系统 可打印 c# vs
- c# 开发与 mysql数据库实现的增删改查
- [源代码] 《领域驱动设计 (C# 2008 实
- ASP.NET+SQL Server 2008 实现的学生学籍管
- c#服装店销售管理源码系统无限制全功
- 24652561RevitWPFAddin.zip
- 华视CVR100开发SDK说明+C#案例.rar
- visual C#2005 管理系统开发经典案例 罗
- 在线购物系统 C# ASP.NET SQL Server2005 毕
- 强烈推荐:完整的C#源代码之 网上商
- 2008.精通LINQ数据访问技术pdf及源码
- 100多个C#合集
- C#+sql 2000 人力资源管理系统
- 2018CRM C# 源码基于小黄豆CRMv2.0.925.3版
- 网上购物系统 asp.net网站+SQL2000
- 宾馆管理系统(c#2008access2003winform)
- 教师信息管理系统ASP.NET+SQL Server2005,
- IP地址控件C#版
- 2008 安装 sqldmo.dll
- 100个C#初学者编程
- 0090 C#绘制流程图源码.zip
评论
共有 条评论