📄 redblackexception.cs
字号:
///<summary>
/// The RedBlackException class distinguishes read black tree exceptions from .NET
/// exceptions.
///
/// File adapted by an implementation by "RoyClem" available at The Code Project
/// http://www.thecodeproject.com/csharp/RedBlackCS.asp
///</summary>
using System;
namespace RedBlackCS
{
public class RedBlackException : Exception
{
public RedBlackException()
{
}
public RedBlackException(string msg) : base(msg)
{
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -