public void AddRange(ParserError[] value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("value");
     }
     for (int i = 0; i < value.Length; i++)
     {
         this.Add(value[i]);
     }
 }
Exemplo n.º 2
0
 public ParserErrorCollection(ParserError[] value) {
     this.AddRange(value);
 }
Exemplo n.º 3
0
 public void Insert(int index, ParserError value)
 {
 }
Exemplo n.º 4
0
 public bool Contains(ParserError value)
 {
     return(default(bool));
 }
Exemplo n.º 5
0
		void ReportParseError (ParserError err)
		{

			if (reportParseError != null)
				reportParseError (err);
		}
Exemplo n.º 6
0
		public void Insert (int index, ParserError error)
		{
			InnerList.Insert (index, error);
		}
Exemplo n.º 7
0
		public void AddRange (ParserError[] errors)
		{
			InnerList.AddRange (errors);
		}
Exemplo n.º 8
0
 public void Remove(ParserError value) {
     List.Remove(value);
 }
 public ParserErrorCollection(ParserError[] value)
 {
 }
 public void Insert(int index, ParserError value)
 {
 }
 public int IndexOf(ParserError value)
 {
   return default(int);
 }
 public void CopyTo(ParserError[] array, int index)
 {
 }
 public bool Contains(ParserError value)
 {
   return default(bool);
 }
 public void AddRange(ParserError[] value)
 {
 }
Exemplo n.º 15
0
 public bool Contains(ParserError value) {
     return List.Contains(value);
 }
Exemplo n.º 16
0
 public int IndexOf(ParserError value) {
     return List.IndexOf(value);
 }
 public void Remove(ParserError value)
 {
 }
Exemplo n.º 18
0
		public ParserErrorCollection (ParserError[] errors)
		{
			InnerList.AddRange (errors);
		}
Exemplo n.º 19
0
 public bool Contains(ParserError value)
 {
     return(base.List.Contains(value));
 }
Exemplo n.º 20
0
		public void CopyTo (ParserError[] errors, int index)
		{
			List.CopyTo (errors, index);
		}
Exemplo n.º 21
0
 public int IndexOf(ParserError value)
 {
     return(base.List.IndexOf(value));
 }
 public int Add(ParserError value)
 {
   return default(int);
 }
Exemplo n.º 23
0
 public void Insert(int index, ParserError value)
 {
     base.List.Insert(index, value);
 }
Exemplo n.º 24
0
 public int Add(ParserError value)
 {
     return(default(int));
 }
Exemplo n.º 25
0
 public void Remove(ParserError value)
 {
     base.List.Remove(value);
 }
Exemplo n.º 26
0
 public int IndexOf(ParserError value)
 {
     return(default(int));
 }
Exemplo n.º 27
0
 public int Add(ParserError value)
 {
     return(List.Add(value));
 }
Exemplo n.º 28
0
 public void Remove(ParserError value)
 {
 }
Exemplo n.º 29
0
 public bool Contains(ParserError value)
 {
     return(InnerList.Contains(value));
 }
Exemplo n.º 30
0
 public int Add(ParserError value) {
     return List.Add(value);
 }
Exemplo n.º 31
0
 public int IndexOf(ParserError value)
 {
     return(InnerList.IndexOf(value));
 }
Exemplo n.º 32
0
 public void CopyTo(ParserError[] array, int index) {
     List.CopyTo(array, index);
 }
Exemplo n.º 33
0
 public void Insert(int index, ParserError value)
 {
     InnerList.Insert(index, value);
 }
Exemplo n.º 34
0
 public void Insert(int index, ParserError value) {
     List.Insert(index, value);
 }
Exemplo n.º 35
0
 public void Remove(ParserError value)
 {
     InnerList.Remove(value);
 }
		public virtual void ReportParseError (ParserError error)
		{
		}
Exemplo n.º 37
0
 public int Add(ParserError error)
 {
     return(List.Add(error));
 }
Exemplo n.º 38
0
		public int Add (ParserError error)
		{
			return List.Add (error);
		}
Exemplo n.º 39
0
 public bool Contains(ParserError error)
 {
     return(InnerList.Contains(error));
 }
Exemplo n.º 40
0
		public bool Contains (ParserError error)
		{
			return InnerList.Contains (error);
		}
Exemplo n.º 41
0
 public int IndexOf(ParserError error)
 {
     return(InnerList.IndexOf(error));
 }
Exemplo n.º 42
0
		public int IndexOf (ParserError error)
		{
			return InnerList.IndexOf (error);
		}
Exemplo n.º 43
0
 public void Insert(int index, ParserError error)
 {
     InnerList.Insert(index, error);
 }
Exemplo n.º 44
0
		public void Remove (ParserError error)
		{
			InnerList.Remove (error);
		}
Exemplo n.º 45
0
 public void Remove(ParserError error)
 {
     InnerList.Remove(error);
 }