System.ASSERT.PRECONDITION C# (CSharp) Method

PRECONDITION() private method

private PRECONDITION ( bool condition, string message ) : void
condition bool
message string
return void
        internal static void PRECONDITION(bool condition, string message)
        {
            Assert(condition, message);
        }

Same methods

ASSERT::PRECONDITION ( bool condition ) : void
ASSERT::PRECONDITION ( bool condition, string message, string detailedMessage ) : void