📄 sqlfilegrowthtype.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -