PERWAPI.BoolConst.BoolConst C# (CSharp) Méthode

BoolConst() public méthode

Create a new boolean constant with the value "val"
public BoolConst ( bool val ) : System
val bool value of this boolean constant
Résultat System
        public BoolConst(bool val)
        {
            this.val = val;
            size = 1;
            type = ElementType.Boolean;
        }