企业库
http://www.cnblogs.com/kyo-yo/archive/2010/06/10/Learning-EntLib-Second.html
http://tech.it168.com/a2009/0506/275/000000275083.shtml
64解码
public
class
hashcache
2 {
3
private
static
Hashtable
parmCache =
Hashtable
.Synchronized(
new
Hashtable
());
4
5
public
static
void
CacheParameters(
string
cacheKey,
string
cmdParms)
6 {
7 parmCache[cacheKey] = cmdParms;
8 }
9
10
public
static
string
GetCachedParameters(
string
cacheKey)
11 {
12
return
(
string
)parmCache[cacheKey];
13 }
14 }