Click or drag to resize
ExceptionsThrowAllTException Method

[This is preliminary documentation and is subject to change.]

Specifies a conditions and throws an exception with the provided message if all conditions are true.

Namespace: VRage
Assembly: VRage.Library (in VRage.Library.dll) Version: 1.0.0.0
Syntax
C#
public static void ThrowAll<TException>(
	bool[] conditions,
	params Object[] args
)
where TException : Exception

Parameters

conditions
Type: SystemBoolean
The conditional expression to test.
args
Type: SystemObject
Exception arguments.

Type Parameters

TException
The exception to throw if the condition is true.
See Also