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

Assert() 개인적인 정적인 메소드

private static Assert ( bool condition, string message ) : void
condition bool
message string
리턴 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