How to access settings from C# in .NET 2.0?

G

GS

Hi,

There is reference about accessing settings file in VB.NET but nothing about
C#. How do I read settings in application settings file with C#?

Thanks,
G
 
C

Chris

GS said:
Hi,

There is reference about accessing settings file in VB.NET but nothing about
C#. How do I read settings in application settings file with C#?

Thanks,
G

The same way you do it in VB.NET. The framework in language
independent, the classes are the same in both cases. All that changes
is the syntax.

Chris
 
J

Jeff

GS said:
Hi,

There is reference about accessing settings file in VB.NET but nothing about
C#. How do I read settings in application settings file with C#?

Thanks,
G

Hi G,

When you say settings file, do you mean web.config?

If this is the case, in your code behind type
some var = System.Configuration.ConfigurationSettings.AppSettings[index
or name of key];

Jeff
 
J

Jeff

GS said:
Hi,

There is reference about accessing settings file in VB.NET but nothing about
C#. How do I read settings in application settings file with C#?

Thanks,
G

Hi G,

When you say settings file, do you mean web.config?

If this is the case, in your code behind type
some var = System.Configuration.ConfigurationSettings.AppSettings[index
or name of key];

Jeff
 
G

GS

No, I meant console application. Below is part of .NET documentation about
accessing settings in VB. How do I do the same in C#?
There is no My.Settings


This section contains topics describing the My.Settings object and the tasks
it enables you to accomplish.

My.Settings
The properties of the My.Settings object provide access to your
application's settings. To add or remove settings, use the Project Designer.
For more information, see How to: Add or Remove Application Settings.

The methods of the My.Settings object allow you to save the current user
settings or revert the user settings to the last saved values.

Tasks
The following table lists examples showing how to access an application's
forms.

To See
Update the value of a user setting
How to: Change User Settings in Visual Basic

Display application and user settings in a property grid
How to: Create Property Grids for User Settings in Visual Basic

Save updated user setting values
How to: Persist User Settings in Visual Basic

Determine the values of user settings
How to: Read Application Settings in Visual Basic




Jeff said:
Hi,

There is reference about accessing settings file in VB.NET but nothing
about
C#. How do I read settings in application settings file with C#?

Thanks,
G

Hi G,

When you say settings file, do you mean web.config?

If this is the case, in your code behind type
some var = System.Configuration.ConfigurationSettings.AppSettings[index
or name of key];

Jeff
 
G

Guest

This method also works for any app.config file in a VS project. When you
compile the project, VS will create a file named "yourapp.exe.config" in the
bin directory. In the app.config place lines like the following in the
<appSettings> section:

<add key="SettingName" value ="thevalue"/>

Then in your code use

string variable =
System.Configuration.ConfigurationSettings.AppSettings["SettingName"];

The appsettings method returns a string so you would have to convert it to
another type if you wanted to store numbers, etc.

Hope this helps.


Jeff said:
Hi,

There is reference about accessing settings file in VB.NET but nothing about
C#. How do I read settings in application settings file with C#?

Thanks,
G

Hi G,

When you say settings file, do you mean web.config?

If this is the case, in your code behind type
some var = System.Configuration.ConfigurationSettings.AppSettings[index
or name of key];

Jeff
 
B

Brett Wickard

Check out ...

YourApplicationNameSpace.Properties.Settings.Default.YourSettingName

GS said:
No, I meant console application. Below is part of .NET documentation about
accessing settings in VB. How do I do the same in C#?
There is no My.Settings


This section contains topics describing the My.Settings object and the
tasks it enables you to accomplish.

My.Settings
The properties of the My.Settings object provide access to your
application's settings. To add or remove settings, use the Project
Designer. For more information, see How to: Add or Remove Application
Settings.

The methods of the My.Settings object allow you to save the current user
settings or revert the user settings to the last saved values.

Tasks
The following table lists examples showing how to access an application's
forms.

To See
Update the value of a user setting
How to: Change User Settings in Visual Basic

Display application and user settings in a property grid
How to: Create Property Grids for User Settings in Visual Basic

Save updated user setting values
How to: Persist User Settings in Visual Basic

Determine the values of user settings
How to: Read Application Settings in Visual Basic




Jeff said:
Hi,

There is reference about accessing settings file in VB.NET but nothing
about
C#. How do I read settings in application settings file with C#?

Thanks,
G

Hi G,

When you say settings file, do you mean web.config?

If this is the case, in your code behind type
some var = System.Configuration.ConfigurationSettings.AppSettings[index
or name of key];

Jeff
 

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