-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEntryType.cs
46 lines (43 loc) · 1.07 KB
/
EntryType.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* ***********************************************
* Copyright (c) 2009-2010 luoshasha. All rights reserved";
* CLR version: 4.0.30319.296"
* File name: LineType.cs"
* Date: 12/5/2012 11:42:19 AM
* Author : luoshasha(sand)
* Email : [email protected]
* Description:
* History: created by luoshasha(sand) 12/5/2012 11:42:19 AM
* ***********************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SandLib.Util
{
/// <summary>
/// ini line semantic
/// </summary>
public enum EntryType
{
/// <summary>
/// Unknown line
/// </summary>
Unknown,
/// <summary>
/// comment line
/// </summary>
Comment,
/// <summary>
/// empty line
/// </summary>
Empty,
/// <summary>
/// section line
/// </summary>
Section,
/// <summary>
/// kv line
/// </summary>
KeyValue
}
}