System.Reflection.Emit.SequencePointList.GetEndLines C# (CSharp) Method

GetEndLines() public method

public GetEndLines ( ) : int[]
return int[]
		public int[] GetEndLines()
		{
			int[] data = new int [count];
			for (int n=0; n<count; n++) data [n] = points[n].EndLine;
			return data; 
		}
		public int[] GetEndColumns()