Initializing help system before first use

isValid Method

Returns whether the current XPRBcut object is valid.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 37.1.1.0
Syntax
C#
VB
public bool isValid()

Return Value

Type:  Boolean
Boolean true if the current XPRBcut is valid.
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBcut cut = new XPRBcut(); ... if(cut.isValid()) System.Console.Writeln("The cut is valid.");
See Also