cstringconst.cs
来自「使用C#程序将23个常用设计模式进行列表显示」· CS 代码 · 共 22 行
CS
22 行
/************************************************************************/
/* 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 + =
减小字号Ctrl + -
显示快捷键?