- 授权协议: MIT
- 开发语言: C#
- 操作系统: Windows
- 软件首页: https://code.google.com/p/sequelmaxnet/
- 软件文档: http://www.codeproject.com/Articles/744632/SequelMax-NET
软件介绍
SequelMax.NET 是一个 .NET 的 XML 解析库,使用全新的 SAX 解析模式。SequelMax.NET 移植自 C++ 版本的 SequelMax 解析库。
示例代码:
static bool ReadDoc(string file, List<Employee> list)
{
SequelMaxNet.Document doc = new SequelMaxNet.Document();
doc.RegisterStartElementDelegate("Employees|Employee", (elem) =>
{
Employee emp = new Employee();
emp.EmployeeID = elem.Attr("EmployeeID").GetInt32(0);
emp.SupervisorID = elem.Attr("SupervisorID").GetInt32(0);
list.Add(emp);
});
doc.RegisterEndElementDelegate("Employees|Employee|Name", (text) =>
{
list[list.Count - 1].Name = text;
});
doc.RegisterEndElementDelegate("Employees|Employee|Gender", (text) =>
{
list[list.Count - 1].Gender = text;
});
doc.RegisterEndElementDelegate("Employees|Employee|Salary", (text) =>
{
Double.TryParse(text, out list[list.Count - 1].Salary);
});
doc.RegisterCommentDelegate("Employees|Employee", (text) =>
{
list[list.Count - 1].Comment = text;
});
return doc.Open(file);
}
互联网思维的企业
[美] Dave Gray Thomas Vander Wal / 张 玳 / 人民邮电出版社 / 2014-4-25 / 59.00元
本书指导企业跳出仅更新自家产品和服务的怪圈,在管理方式、组织结构和公司文化方面进行变革,建立具有互联网思维的企业。书中通过大量图示和示例阐述了互联式公司必需的基础元素(透明的互动和交流平台,推崇自治和应变的组织结构,实验和学习的企业文化),以及一套鼓励员工创新的新式管理和奖励体系。最后,讨论板可方便你在工作时间和同事探讨如何增加公司的互联程度。一起来看看 《互联网思维的企业》 这本书的介绍吧!
