TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
george senikos
NA
5
0
configuration manager question
Jun 5 2008 8:15 PM
using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;
namespace ConsoleApplication111
{
class Program
{
static void Main(string[] args)
{
//System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
//Console.WriteLine(config.Sections["Foo"]);
String foo = ConfigurationManager.AppSettings["Test"];
Console.WriteLine(foo);
}
}
}
?<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</configSections>
<appSettings>
<add key="Test" value="hello"/>
</appSettings>
</configuration>
I have been trying to read from the XML abd print to the screen but havent been able to do so can you help???
Reply
Answers (
5
)
managing objects in callback
yesterday's time