Example #1
0
 public static void Add <T>(this ValuesInitializer @this, AttachedValue <T> value) =>
 @this.Object[value.Property] = value.Value;
Example #2
0
 public static void Add <T>(this ValuesInitializer @this, AttachedProperty <T> property, T value) =>
 @this.Object[property] = value;