Build 1.01.318.0
Assembly: Opc.Ua.Core (in Opc.Ua.Core.dll) Version: 1.1.318.1 (1.01.318.1)
CopyC#
Copy
[This is preliminary documentation and is subject to change.]
A collection of Boolean values.
Namespace: Opc.UaAssembly: Opc.Ua.Core (in Opc.Ua.Core.dll) Version: 1.1.318.1 (1.01.318.1)
Syntax
| C# |
|---|
public class BooleanCollection : List<bool>, ICloneable |
| Visual Basic |
|---|
Public Class BooleanCollection _ Inherits List(Of Boolean) _ Implements ICloneable |
| Visual C++ |
|---|
public ref class BooleanCollection : public List<bool>, ICloneable |
Remarks
Provides a strongly-typed collection of Boolean values.
Examples
BooleanCollection bools = new BooleanCollection(); bools.AddRange( new bool[]{true, false, true, false} );
Dim bools As New BooleanCollection()
bools.AddRange( New Boolean(){ True, False, True, False } )
Inheritance Hierarchy
System..::..Object
System.Collections.Generic..::..List<(Of <(<'Boolean>)>)>
Opc.Ua..::..BooleanCollection
System.Collections.Generic..::..List<(Of <(<'Boolean>)>)>
Opc.Ua..::..BooleanCollection