• 大小: 6.57KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签:

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;

namespace LightINI
{
    public class IniFile : IEnumerable
    {
        /// 
        /// 注释字符
        /// 

        public const string CommetChars = “;#“;

        /// 
        /// 所有节点
        /// 

        private readonly HashSet Sections;

        public IniFile()
        {
            Sections = new HashSet();
        }

        public IniSection this[string key]
        {
            get { return Get(key); }
        }

        public IniSection Get(string sectionName)
        {
            return Sections.FirstOrDefault(s => s.Name.Equals(sectionName StringComparison.OrdinalIgnoreCase));
        }

        public IniSection Get(string section

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-06-17 08:32  LightINI\
     文件        2518  2016-06-17 08:32  LightINI\.gitattributes
     文件          10  2016-06-17 08:32  LightINI\.gitignore
     文件        4578  2016-06-17 08:32  LightINI\IniFile.cs
     文件         800  2016-06-17 08:32  LightINI\IniItem.cs
     文件        2677  2016-06-17 08:32  LightINI\IniSection.cs
     文件        2329  2016-06-17 08:32  LightINI\LightINI.csproj
     目录           0  2016-06-17 08:32  LightINI\Properties\
     文件        1330  2016-06-17 08:32  LightINI\Properties\AssemblyInfo.cs
     文件        1227  2016-06-17 08:32  LightINI\README.md

评论

共有 条评论

相关资源