Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Languages / C# / December 2005

Tip: Looking for answers? Try searching our database.

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

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
GS - 22 Dec 2005 15:34 GMT
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
Chris - 22 Dec 2005 16:00 GMT
> Hi,
>
[quoted text clipped - 3 lines]
> 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
Jeff - 22 Dec 2005 16:03 GMT
> Hi,
>
[quoted text clipped - 3 lines]
> 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
Curtis - 22 Dec 2005 18:14 GMT
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.

> > Hi,
> >
[quoted text clipped - 13 lines]
>
> Jeff
Jeff - 22 Dec 2005 16:05 GMT
> Hi,
>
[quoted text clipped - 3 lines]
> 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
GS - 22 Dec 2005 16:32 GMT
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

>> Hi,
>>
[quoted text clipped - 14 lines]
>
> Jeff
Brett Wickard - 22 Dec 2005 18:19 GMT
Check out ...

YourApplicationNameSpace.Properties.Settings.Default.YourSettingName

> No, I meant console application. Below is part of .NET documentation about
> accessing settings in VB. How do I do the same in C#?
[quoted text clipped - 47 lines]
>>
>> Jeff

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.