ASN1C C# Runtime Library
7.2
|
Public Member Functions | |
BooleanHolder () | |
BooleanHolder (bool value) | |
Public Attributes | |
bool | mValue |
A Holder class for a Boolean
that is used to store "out" and "inout" parameters in methods. If a method has a boolean
as an "out" or "inout" parameter, the programmer must pass an instance of BooleanHolder
as the corresponding parameter in the method invocation; for "inout" parameters, the programmer must also fill the "in" value.
myBooleanHolder.mValue
. BooleanHolder | ( | ) |
The default constructor for BooleanHolder class
BooleanHolder | ( | bool | value | ) |
This constructor will intialize BooleanHolder class with specified boolean value.
value | Boolean value |
bool mValue |
This member variable is where the boolean value is stored.