📄 useridnotexistedexception.cs
字号:
using System;
namespace Org.InteliIM.Users
{
/// <summary>
/// 录一没写诘没斐?
/// </summary>
public class UserIDNotExistedException : Exception
{
private string id;
/// <summary>
/// 没 ID
/// </summary>
public string Id
{
get { return this.id; }
set { this.id = value; }
}
public UserIDNotExistedException(string id)
{
this.Id = id;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -