/// Gets or sets the source code line number in the output.
/// </summary>
publicintSourceCodeLine{get;set;}
/// <summary>
/// Gets or sets IL Range offset for the source code line. E.g.: 13-19 <-> 135.
/// </summary>
publicILRangeILInstructionOffset{get;set;}
/// <summary>
/// Gets or sets the current types at the source code line. E.g.: for int a = dictionary.Count; the list will contain System.Int32 and System.Collections.Generic.Dictionary<TKey, TValue>.