public void AddRange(ParserError[] value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("value");
     }
     for (int i = 0; i < value.Length; i++)
     {
         this.Add(value[i]);
     }
 }
コード例 #2
0
 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
ファイル: BaseBuildProvider.cs プロジェクト: nuxleus/Nuxleus
		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);
		}
コード例 #8
0
 public void Remove(ParserError value) {
     List.Remove(value);
 }
コード例 #9
0
 public ParserErrorCollection(ParserError[] value)
 {
 }
コード例 #10
0
 public void Insert(int index, ParserError value)
 {
 }
コード例 #11
0
 public int IndexOf(ParserError value)
 {
   return default(int);
 }
コード例 #12
0
 public void CopyTo(ParserError[] array, int index)
 {
 }
コード例 #13
0
 public bool Contains(ParserError value)
 {
   return default(bool);
 }
コード例 #14
0
 public void AddRange(ParserError[] value)
 {
 }
コード例 #15
0
 public bool Contains(ParserError value) {
     return List.Contains(value);
 }
コード例 #16
0
 public int IndexOf(ParserError value) {
     return List.IndexOf(value);
 }
コード例 #17
0
 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));
 }
コード例 #22
0
 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));
 }
コード例 #30
0
 public int Add(ParserError value) {
     return List.Add(value);
 }
コード例 #31
0
 public int IndexOf(ParserError value)
 {
     return(InnerList.IndexOf(value));
 }
コード例 #32
0
 public void CopyTo(ParserError[] array, int index) {
     List.CopyTo(array, index);
 }
コード例 #33
0
 public void Insert(int index, ParserError value)
 {
     InnerList.Insert(index, value);
 }
コード例 #34
0
 public void Insert(int index, ParserError value) {
     List.Insert(index, value);
 }
コード例 #35
0
 public void Remove(ParserError value)
 {
     InnerList.Remove(value);
 }
コード例 #36
0
		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);
 }