Exemplo n.º 1
0
        public StringProperties Clone()
        {
            StringProperties clone = new StringProperties();

            clone.innerHash = (Hashtable)innerHash.Clone();

            return(clone);
        }
Exemplo n.º 2
0
        public static StringProperties Synchronized(StringProperties nonSync)
        {
            StringProperties sync = new StringProperties();

            sync.innerHash = Hashtable.Synchronized(nonSync.innerHash);

            return(sync);
        }
Exemplo n.º 3
0
 internal StringPropertiesEnumerator(StringProperties enumerable)
 {
     innerEnumerator = enumerable.InnerHash.GetEnumerator();
 }
Exemplo n.º 4
0
 public StringProperties(StringProperties original)
 {
     innerHash = new Hashtable(original.innerHash);
 }