redblackexception.cs

来自「game implemented java」· CS 代码 · 共 23 行

CS
23
字号
///<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 + =
减小字号Ctrl + -
显示快捷键?