System.ASSERT.CONSISTENCY_CHECK C# (CSharp) 메소드

CONSISTENCY_CHECK() 개인적인 메소드

private CONSISTENCY_CHECK ( bool condition, string message ) : void
condition bool
message string
리턴 void
        internal static void CONSISTENCY_CHECK(bool condition, string message)
        {
            Assert(condition, message);
        }

Same methods

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