资源简介
代码片段和文件信息
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
- 上一篇:简易图书管理系统
- 下一篇:串口协议通信实现的温度计
评论
共有 条评论