System.ASSERT.Assert C# (CSharp) Method

Assert() private static method

private static Assert ( ) : void
return void
        private static void Assert()
        {
            Assert(false, null, null);
        }

Same methods

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