Regular

I recently stumbled upon following .net API calls: public void LoadData() { //... personBindingSource.ResetBindings(true); positionBindingSource.ResetBindings(false); } By just reading the code you don’t know what will happen with these bindings. Will positionBindingSource be reset? It doesn’t read like it would. So what does the boolean parameter mean? After checking out...