Given a position in a document, get an array of start/end offset pairs that correspond to the ranges of IL that the position covers within this method. The array is an array of integers and is [start, end, start, end]. The number of range pairs is the length of the array divided by 2.
[Visual Basic] Function GetRanges( _ ByVal document As ISymbolDocument, _ ByVal line As Integer, _ ByVal column As Integer _ ) As Integer () [C#] int[] GetRanges( ISymbolDocument document, int line, int column ); [C++] int* GetRanges( ISymbolDocument* document, int line, int column ) [] = 0; [JScript] function GetRanges( document : ISymbolDocument, line : int, column : int ) : int[];
An array of start/end offset pairs.
ISymbolMethod Interface | ISymbolMethod Members | System.Diagnostics.SymbolStore Namespace