sqlobjecttype.cs
来自「企业内部管理系统」· CS 代码 · 共 24 行
CS
24 行
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 + =
减小字号Ctrl + -
显示快捷键?