Does .NET CLR support any class functions to read/write profile,

  • Thread starter Thread starter joye
  • Start date Start date
J

joye

Dear All

Does .NET CLR support any class functions to read/write profile, such as
SDK function GetPrivateProfieString()/WritePrivateProfileString() for
operating ini file?
Thank you.

Regards,
Tsung-Yu
 
Hello,
Does .NET CLR support any class functions to read/write profile, such as
SDK function GetPrivateProfieString()/WritePrivateProfileString() for
operating ini file?

If you want to support profile in your managed application then make
acquaintance with "Isolated Storage",
and use "XML Serialization" to store your data.
 
Back
Top