Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand.ConcatHashtables C# (CSharp) Method

ConcatHashtables() private static method

private static ConcatHashtables ( Hashtable first, Hashtable second ) : Hashtable
first System.Collections.Hashtable
second System.Collections.Hashtable
return System.Collections.Hashtable
        private static Hashtable ConcatHashtables(Hashtable first, Hashtable second)
        {
            foreach (DictionaryEntry item in second)
            {
                first[item.Key] = item.Value;
            }
            return first;
        }
    }