Exemplo n.º 1
0
        private static string GetTargetedValue(IniSection targetedSection, string targetedKeyName)
        {
            IniKey targetedKey = targetedSection.Keys[targetedKeyName];

            return(targetedKey != null ? targetedKey.Value : null);
        }
 internal IniKeyCollection(IniFile parentFile, IniSection parentSection, IniDuplication duplication, bool caseSensitive)
     : base(parentFile, parentSection, duplication, caseSensitive)
 {
 }