Configuration settings problem

U

Udi

Hi,
I have a class library (not using winforms) that uses some setting
parameters.
There's a file created MyClassLib.dll.config that contains these
paramters (User scoped).
I can read them ok, I can even change their values and save them
between reruns. (All by using Settings.Default.MyParam property)

What I can't figure out is where are they saved?!
My MyClassLib.dll.config file is not changed (always stays with the
orig values),
but the application manage to read new values between reruns, so where
the heck are they saved?
(I looked in the registry, I found some clues but the data saved there
is binary so i'm not sure thats it)

Thanks!
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,


Udi said:
Hi,
I have a class library (not using winforms) that uses some setting
parameters.

A .net dll?
There's a file created MyClassLib.dll.config that contains these
paramters (User scoped).

They are probably saved in one of the User's directory: ( My Documents,
User's application data, User's personal data folder, etc )

(I looked in the registry, I found some clues but the data saved there
is binary so i'm not sure thats it)

That is also a possibility, can you check it with the original developers?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top