Beispiel #1
0
 /// <summary>
 /// Add a new property to this model, if it does not already exist within it
 /// </summary>
 /// <param name="property">The property to be added.</param>
 /// <returns>True if the property could be added, false if it already existed within
 /// the model.</returns>
 public bool Add(Family property)
 {
     return(Families.TryAdd(property));
 }