Is it impossible to implement ICurrencyManagerProvider outside System.Windows.Forms namespace?

  • Thread starter Thread starter EMoscosoCam
  • Start date Start date
E

EMoscosoCam

Guest
Hello

I have read the source code of the classes BindingSource and CurrencyManager. Since the constructor of the CurrencyManager is not exposed (it is declared as Internal), is it possible to effectively implement the interface ICurrencyManagerProvider? Besides the class BindingSource, is there another implementation of the referred interface?

namespace System.Windows.Forms {

...

public class CurrencyManager : BindingManagerBase {


internal CurrencyManager(Object dataSource) {
SetDataSource(dataSource);
}

...

}

}




Thanks a lot.

Continue reading...
 
Back
Top