Microsoft.JScript.Debug.Assert C# (CSharp) Method

Assert() private method

private Assert ( bool condition ) : void
condition bool
return void
      public static void Assert(bool condition){
        if (!condition)
          throw new AssertException("Assertion fired");
      }
      

Same methods

Debug::Assert ( bool condition, String message ) : void