ctype.cs
来自「基于Asp.net、MS sql sever 2000、C# 论坛系统源码」· CS 代码 · 共 67 行
CS
67 行
using System;
namespace Stella.Web.ProcessFlow
{
/// <summary>
/// 各种缓存健值
/// </summary>
public abstract class CType
{
public static string Forum
{
get{ return "forum";}
}
public static string Themes
{
get{return "themes";}
}
public static string ForumConfig
{
get{return "forumConfig";}
}
public static string HeadList
{
get{return "headList";}
}
public static string PlacardList
{
get{return "placardList";}
}
public static string AdminerList
{
get{return "adminerList";}
}
public static string ManagerList
{
get{return "managerList";}
}
public static string Topics(int themeId)
{
return string.Format("{0}topics",themeId);
}
public static string NewTopics
{
get{return "newTopics";}
}
public static string ThemeName
{
get{return "themeName";}
}
public static string ThemeManagerList
{
get{return "themeManagerList";}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?