sqlfilegrowthtype.cs

来自「企业内部管理系统」· CS 代码 · 共 19 行

CS
19
字号
using System;

namespace SqlAdmin {
    /// <summary>
    /// Represents the file growth type for a data file or a transaction log file of a database.
    /// </summary>
	public enum SqlFileGrowthType {
        /// <summary>
        /// Indicates that the file should grow in megabytes.
        /// </summary>
        MB = 0,

        /// <summary>
        /// Indicates that the file should grow by a certain percentage.
        /// </summary>
        Percent = 1
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?