public static void OnBeforeTypeChanged(IContact contact, ExtendedPropertyChangedEventArgs args){ foreach(IContact c in contact.Account.Contacts){ if(c.Id.ToString() != contact.Id.ToString()){ c.Type = (String) args.NewValue; } }}