
Visual Basic (Usage) | ![]() |
---|---|
Dim instance As BooleanCollection |
C# | |
---|---|
[CollectionDataContractAttribute(Namespace="http://opcfoundation.org/UA/2008/02/Types.xsd", IsNamespaceSetExplicitly=true, Name="ListOfBoolean", IsNameSetExplicitly=true, ItemName="Boolean", IsItemNameSetExplicitly=true)] public class BooleanCollection : System.Collections.Generic.List<bool> |
Provides a strongly-typed collection of Boolean values.
C# | ![]() |
---|---|
BooleanCollection bools = new BooleanCollection(); bools.AddRange( new bool[]{true, false, true, false} ); |
Visual Basic | ![]() |
---|---|
Dim bools As New BooleanCollection() bools.AddRange( New Boolean(){ True, False, True, False } ) |
System.Object
System.Collections.Generic.List<T>
Opc.Ua.BooleanCollection
Target Platforms: Windows 7/8/10, Windows Server 2003/2008/2012/2015, .NET4.x