示例#1
0
文件: GSL_ERR.cs 项目: olesar/Altaxo
        public GSL_ERROR(string message, GSL_ERR number, bool bDebug)
        {
            Message = message;
            Number  = number;

            if (bDebug)
            {
                throw new ArithmeticException(message);
            }
        }
示例#2
0
文件: GSL_ERR.cs 项目: Altaxo/Altaxo
		public GSL_ERROR(string message, GSL_ERR number, bool bDebug)
		{
			this.Message = message;
			this.Number = number;

			if (bDebug)
				throw new ArithmeticException(message);
		}