Asserts that the condition is false.
(bool condition)
| 241 | /// </summary> |
| 242 | /// <param name="condition"></param> |
| 243 | [Conditional("FLAX_ASSERTIONS")] |
| 244 | public static void IsFalse(bool condition) |
| 245 | { |
| 246 | IsFalse(condition, null); |
| 247 | } |
| 248 | |
| 249 | /// <summary> |
| 250 | /// Asserts that the condition is false. |