sitewebsetting.cs
来自「Dos 以功能个性化和人性化为基础」· CS 代码 · 共 33 行
CS
33 行
//===============================================
// \\\|///
// \\ - - //
// ( @ @ )
//┏━━━━━━━━━oOOo-(_)-oOOo━━━┓
//┃ ┃
//┃ 东 网 原 创! ┃
//┃ lenlong 作品,请保留此信息! ┃
//┃ ** lenlenlong@hotmail.com ** ┃
//┃ ┃
//┃ Dooo ┃
//┗━━━━━━━━━ oooD━-( )━━━┛
// ( ) ) /
// \ ( (_/
// \_)
//===============================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Components
{
public class SiteWebSetting
{
private static string _WebSiteTitle = string.Empty;
public static string WebSiteTitle
{
get { return _WebSiteTitle; }
set { _WebSiteTitle = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?