using System;
using MyNamespace;
namespace MyNamespace
{
public class MySettings
{
public float Foo
{
get { return this.foo; }
set { this.foo = value; }
}
float foo;
public string Bar
{
get { return this.bar; }
set { this.bar = value; }
}
string bar;
const string SECTION_NAME = "MyStuff";
static MySettings _settings = (MySettings)System.Configuration.ConfigurationManager.GetSection("MySettings");
public static MySettings Settings
{
get
{
return _settings;
}
}
}
}
File: Web.config
1.234
A bunch of information