📄 sqlobjecttype.cs
字号:
using System;
namespace SqlAdmin {
/// <summary>
/// Represents the type of an object, either a User object or a System object.
/// </summary>
public enum SqlObjectType {
/// <summary>
/// Indicates that the value is not set.
/// </summary>
NotSet = 0,
/// <summary>
/// Indicates that the object was created by a user.
/// </summary>
User = 1,
/// <summary>
/// Indicates that the object is a system object.
/// </summary>
System = 2
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -