comparison Chronosv2/source/Configuration/GenericElementCollection.cs @ 19:09d18d6e5f40

airport work
author stevenh7776 stevenhollidge@hotmail.com
date Thu, 15 Mar 2012 06:59:15 +0000
parents 443821e55f06
children
comparison
equal deleted inserted replaced
18:8049f7c58c2b 19:09d18d6e5f40
1 using System.Configuration; 1 using System.Configuration;
2 2
3 namespace Chronos.Configuration 3 namespace Chronos.Configuration
4 { 4 {
5 /// <summary> 5 /// <summary>
6 /// http://utahdnug.org/blogs/josh/archive/2007/08/21/generic-configurationelementcollection.aspx 6 /// Generic Configuration Element Collection
7 /// </summary> 7 /// </summary>
8 /// <typeparam name="K"></typeparam> 8 /// <typeparam name="K"></typeparam>
9 /// <typeparam name="V"></typeparam> 9 /// <typeparam name="V"></typeparam>
10 public abstract class GenericElementCollection<K, V> 10 public abstract class GenericElementCollection<K, V>
11 : ConfigurationElementCollection where V : ConfigurationElement, new() 11 : ConfigurationElementCollection where V : ConfigurationElement, new()