Example #1
0
        public static String setProperty(String key, String value)
        {
            String oldValue = systemProperties.ContainsKey(key) ? getProperty(key) : null;

            systemProperties.Add(key, value);
            return(oldValue);
        }