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

			if (reportParseError != null)
				reportParseError (err);
		}
示例#6
0
		public void Insert (int index, ParserError error)
		{
			InnerList.Insert (index, error);
		}
示例#7
0
		public void AddRange (ParserError[] errors)
		{
			InnerList.AddRange (errors);
		}
 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)
 {
 }
 public bool Contains(ParserError value) {
     return List.Contains(value);
 }
 public int IndexOf(ParserError value) {
     return List.IndexOf(value);
 }
 public void Remove(ParserError value)
 {
 }
示例#18
0
		public ParserErrorCollection (ParserError[] errors)
		{
			InnerList.AddRange (errors);
		}
示例#19
0
 public bool Contains(ParserError value)
 {
     return(base.List.Contains(value));
 }
示例#20
0
		public void CopyTo (ParserError[] errors, int index)
		{
			List.CopyTo (errors, index);
		}
示例#21
0
 public int IndexOf(ParserError value)
 {
     return(base.List.IndexOf(value));
 }
 public int Add(ParserError value)
 {
   return default(int);
 }
示例#23
0
 public void Insert(int index, ParserError value)
 {
     base.List.Insert(index, value);
 }
示例#24
0
 public int Add(ParserError value)
 {
     return(default(int));
 }
示例#25
0
 public void Remove(ParserError value)
 {
     base.List.Remove(value);
 }
示例#26
0
 public int IndexOf(ParserError value)
 {
     return(default(int));
 }
示例#27
0
 public int Add(ParserError value)
 {
     return(List.Add(value));
 }
示例#28
0
 public void Remove(ParserError value)
 {
 }
示例#29
0
 public bool Contains(ParserError value)
 {
     return(InnerList.Contains(value));
 }
 public int Add(ParserError value) {
     return List.Add(value);
 }
示例#31
0
 public int IndexOf(ParserError value)
 {
     return(InnerList.IndexOf(value));
 }
 public void CopyTo(ParserError[] array, int index) {
     List.CopyTo(array, index);
 }
示例#33
0
 public void Insert(int index, ParserError value)
 {
     InnerList.Insert(index, value);
 }
 public void Insert(int index, ParserError value) {
     List.Insert(index, value);
 }
示例#35
0
 public void Remove(ParserError value)
 {
     InnerList.Remove(value);
 }
		public virtual void ReportParseError (ParserError error)
		{
		}
示例#37
0
 public int Add(ParserError error)
 {
     return(List.Add(error));
 }
示例#38
0
		public int Add (ParserError error)
		{
			return List.Add (error);
		}
示例#39
0
 public bool Contains(ParserError error)
 {
     return(InnerList.Contains(error));
 }
示例#40
0
		public bool Contains (ParserError error)
		{
			return InnerList.Contains (error);
		}
示例#41
0
 public int IndexOf(ParserError error)
 {
     return(InnerList.IndexOf(error));
 }
示例#42
0
		public int IndexOf (ParserError error)
		{
			return InnerList.IndexOf (error);
		}
示例#43
0
 public void Insert(int index, ParserError error)
 {
     InnerList.Insert(index, error);
 }
示例#44
0
		public void Remove (ParserError error)
		{
			InnerList.Remove (error);
		}
示例#45
0
 public void Remove(ParserError error)
 {
     InnerList.Remove(error);
 }