forked from PavelTorgashov/FastColoredTextBox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinesAccessor.cs
More file actions
98 lines (81 loc) · 2.08 KB
/
Copy pathLinesAccessor.cs
File metadata and controls
98 lines (81 loc) · 2.08 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
using System;
using System.Collections.Generic;
using System.Text;
namespace FastColoredTextBoxNS
{
public class LinesAccessor : IList<string>
{
IList<Line> ts;
public LinesAccessor(IList<Line> ts)
{
this.ts = ts;
}
public int IndexOf(string item)
{
for (int i = 0; i < ts.Count; i++)
if (ts[i].Text == item)
return i;
return -1;
}
public void Insert(int index, string item)
{
throw new NotImplementedException();
}
public void RemoveAt(int index)
{
throw new NotImplementedException();
}
public string this[int index]
{
get
{
return ts[index].Text;
}
set
{
throw new NotImplementedException();
}
}
public void Add(string item)
{
throw new NotImplementedException();
}
public void Clear()
{
throw new NotImplementedException();
}
public bool Contains(string item)
{
for (int i = 0; i < ts.Count; i++)
if (ts[i].Text == item)
return true;
return false;
}
public void CopyTo(string[] array, int arrayIndex)
{
for (int i = 0; i < ts.Count; i++)
array[i + arrayIndex] = ts[i].Text;
}
public int Count
{
get { return ts.Count; }
}
public bool IsReadOnly
{
get { return true; }
}
public bool Remove(string item)
{
throw new NotImplementedException();
}
public IEnumerator<string> GetEnumerator()
{
for (int i = 0; i < ts.Count; i++)
yield return ts[i].Text;
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
}