Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PropertyBagValue"/> type.
 /// </summary>
 /// <param name="value">Value to use.</param>
 /// <param name="type">Type of value.</param>
 public PropertyBagValue(string value, PropertyBagValueType type)
 {
     Value = value;
     Type  = type;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PropertyBagValue"/> type.
 /// </summary>
 /// <param name="value">Value to use.</param>
 /// <param name="type">Type of value.</param>
 public PropertyBagValue(string value, PropertyBagValueType type)
 {
     this.Value = value;
     this.Type  = type;
 }