⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cstringconst.cs

📁 使用C#程序将23个常用设计模式进行列表显示
💻 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 + -