/// <summary>
 /// Instantiates the PropertyBuilder to start the process of building a Property.
 /// </summary>
 /// <param name="property">The source <see cref="Property"/> to modify (eg. clone or update).</param>
 public static PropertyBuilder Builder(Property property = null)
 {
     return(new PropertyBuilder(property));
 }