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

GetEndColumns() public method

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