Hi,

Mono 1.9, Custom Configuration Section in app.config has to be specified as:
<configSections>
    <section name="test"
type="System.Configuration.DictionarySectionHandler, System" />
</configSections>

Without the "System" the configuration section may not be used in the
application.

In contrast specifiying the "System" in a VS 2005 console app causes an
exception: Assembly not found (meant is System). Here the config section
entry has to be specified as
<configSections>
    <section name="test"
type="System.Configuration.DictionarySectionHandler" />
</configSections>

Is Mono wrong?

Regards

-- 
View this message in context: 
http://www.nabble.com/System.Configuration.DictionarySectionHandler-again-tp18010187p18010187.html
Sent from the Mono - General mailing list archive at Nabble.com.

_______________________________________________
Mono-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to