App Configuration File

  • Thread starter Thread starter Leonardo Natale
  • Start date Start date
L

Leonardo Natale

Hi, i´d like to know if in are there any app configuration file in CF
2.0,i´m developing an application that needs to take some configuration
values from a file ( like the app configuration file from .Net Framework
from desktop ).
My device has WM 6 and CF 2.0

Thanks a lot in advance!!
Vanesa
 
The ConfigurationManager class is not supported on any version of the CF. I
*think* the OpenNETCF team have written one. I tend to write a class and
serialize it to XML using the XmlSerializer for my configuration
requirements. This enables me to respond to changes during runtime by writing
a event/delegate model.
 
Thanks a lot Simon!!, i'll search about this...


Simon Hart said:
The ConfigurationManager class is not supported on any version of the CF.
I
*think* the OpenNETCF team have written one. I tend to write a class and
serialize it to XML using the XmlSerializer for my configuration
requirements. This enables me to respond to changes during runtime by
writing
a event/delegate model.
 
Back
Top