Exemplo n.º 1
0
 public void Mark(string propertyName)
 {
     MarkItems.Add(new MarkItem(propertyName, string.Empty, -1));
 }
Exemplo n.º 2
0
 public void Mark(string propertyName, int startPosition, int length)
 {
     MarkItems.Add(new MarkItem(propertyName, startPosition, length));
 }
Exemplo n.º 3
0
 public void Mark(string propertyName, string prefix, int index)
 {
     MarkItems.Add(new MarkItem(propertyName, prefix, index));
 }