public bool TryGetValue(string name, out string value) => m_WrappedConfigurationNode.TryGetValue(name, out value);
public bool TryGetValue(string name, out string value) { return(m_WrappedConfigurationNode.TryGetValue(GetPrefixedName(name), out value)); }