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

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

private this ( int index ) : object
index int
Результат object
        internal object this[int index] {
            get {
                ConfigurationValue configValue = GetConfigValue(index);
                if (configValue != null) {
                    return configValue.Value;
                }
                else {
                    return null;
                }
            }

        }

Same methods

ConfigurationValues::this ( string key ) : object