System.ASSERT.Assert C# (CSharp) Method

Assert() private static method

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

Same methods

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