BACnet.SchemaParser.OptionDefinition.OptionDefinition C# (CSharp) Method

OptionDefinition() public method

Constructs a new option definition instance
public OptionDefinition ( TypeDefinition elementType ) : System
elementType TypeDefinition The optional type
return System
        public OptionDefinition(TypeDefinition elementType)
        {
            Contract.Requires(elementType != null);
            this.ElementType = elementType;
        }
OptionDefinition