Mono.Debugger.DebuggerOptions.clone C# (CSharp) Method

clone() private method

private clone ( Hashtable hash ) : Hashtable
hash System.Collections.Hashtable
return System.Collections.Hashtable
        Hashtable clone(Hashtable hash)
        {
            if (hash == null)
                return null;
            Hashtable new_hash = new Hashtable ();
            foreach (string key in hash.Keys)
                new_hash.Add (key, hash [key]);
            return new_hash;
        }

Same methods

DebuggerOptions::clone ( string array ) : string[]