e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
24 lines
805 B
C#
24 lines
805 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="SettingsContext.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Configuration {
|
|
using System.Collections;
|
|
using System.Collections.Specialized;
|
|
using System.Runtime.Serialization;
|
|
using System.Configuration.Provider;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Runtime.Serialization.Formatters.Binary;
|
|
using System.Xml.Serialization;
|
|
using System.ComponentModel;
|
|
|
|
[Serializable()]
|
|
public class SettingsContext : Hashtable
|
|
{
|
|
public SettingsContext() : base() { }
|
|
}
|
|
}
|