Right now the xml summary for Control.ResetBindings reads:
<summary>Causes a control bound to the <see cref="T:System.Windows.Forms.BindingSource" /> to reread all the items in the list and refresh their displayed values.</summary>
Docs - Control.xml
The implementation clears all the bindings though:
public void ResetBindings() {
ControlBindingsCollection bindings = (ControlBindingsCollection)Properties.GetObject(PropBindings);
if (bindings != null) {
bindings.Clear();
}
}
Source
I think perhaps this summary was copied from BindingSource? (Docs)
Right now the xml summary for
Control.ResetBindingsreads:Docs - Control.xml
The implementation clears all the bindings though:
Source
I think perhaps this summary was copied from
BindingSource? (Docs)