📄 cstringconst.cs
字号:
/************************************************************************/
/* Design Pattern Program */
/* Copyright (C) 2006 fujie(fishjam@163.com) */
/************************************************************************/
using System;
namespace DesignPattern
{
class CStringConst
{
public const string STR_CR = "\r";
public const string STR_LF = "\n";
public const string STR_CRLF =STR_CR + STR_LF;
public const string STR_TAB = "\t";
public const string STR_SPACE = " ";
public const string STR_PURPOSE = "意图:\r\n";
public const string STR_APPLICABILITY = "适用性:\r\n";
public const string STR_SAMPLE_USE = "例子:\r\n";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -