Ejemplo n.º 1
0
 /// <summary>
 /// Adds an element with the provided key and value to the dictionary.
 /// </summary>
 /// <param name="dic">The dictionary to extend.</param>
 /// <param name="key">The <see cref="string"/> to use as the key of the element to add.</param>
 /// <param name="value">The <see cref="ushort"/> to use as the value of the element to add.</param>
 public static void AddNumber(this IDictionary <string, AttributeValue> dic, string key, ushort value)
 {
     dic.Add(key, AttributeValueFactory.CreateNumber(value));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Adds an element with the provided key and value to the dictionary.
 /// </summary>
 /// <param name="dic">The dictionary to extend.</param>
 /// <param name="key">The <see cref="AttributeName"/> to use as the key of the element to add.</param>
 /// <param name="value">The <see cref="double"/> to use as the value of the element to add.</param>
 public static void AddNumber(this IDictionary <AttributeName, AttributeValue> dic, string key, double value)
 {
     dic.Add(key, AttributeValueFactory.CreateNumber(value));
 }