コード例 #1
0
 internal IniKeyCollection(IniFile parentFile, IniSection parentSection, IniDuplication duplication, bool caseSensitive)
     : base(parentFile, parentSection, duplication, caseSensitive)
 {
 }
コード例 #2
0
        private static string GetTargetedValue(IniSection targetedSection, string targetedKeyName)
        {
            IniKey targetedKey = targetedSection.Keys[targetedKeyName];

            return(targetedKey != null ? targetedKey.Value : null);
        }