Beispiel #1
0
 public BooleanPin(IValueGeneric <bool> value, string label)
 {
     this.Value = value;
     this.Label = label;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GenericPin{T}"/> class.
 /// </summary>
 /// <param name="value">The value of the pin.</param>
 /// <param name="label">The label of the pin.</param>
 public GenericPin(IValueGeneric <T> value, string label)
 {
     this.Value = value;
     this.Label = label;
 }