System.Configuration.ConfigurationValues.this C# (CSharp) Метод

this() приватный Метод

private this ( string key ) : object
key string
Результат object
        internal object this[string key] {
            get {
                ConfigurationValue configValue = GetConfigValue(key);
                if (configValue != null) {
                    return configValue.Value;
                }
                else {
                    return null;
                }
            }
            set {
                SetValue(key, value, ConfigurationValueFlags.Modified, null);
            }
        }

Same methods

ConfigurationValues::this ( int index ) : object