Accord.Diagnostics.Debug.Assert C# (CSharp) Method

Assert() private method

private Assert ( bool condition, string message = "Internal framework error." ) : void
condition bool
message string
return void
        public static void Assert(bool condition, string message = "Internal framework error.")
        {
            if (!condition)
                throw new Exception(message);
        }
    }
Debug