Maps a point in IL instructions to location in source code.

Namespace:  PostSharp.CodeModel
Assembly:  PostSharp.Public (in PostSharp.Public.dll)

Syntax

Visual Basic (Declaration)
Public NotInheritable Class SymbolSequencePoint _
	Implements IComparable(Of SymbolSequencePoint), IEquatable(Of SymbolSequencePoint)
C#
public sealed class SymbolSequencePoint : IComparable<SymbolSequencePoint>, 
	IEquatable<SymbolSequencePoint>
Visual C++
public ref class SymbolSequencePoint sealed : IComparable<SymbolSequencePoint^>, 
	IEquatable<SymbolSequencePoint^>

Remarks

This class implements the IComparable<(Of <(T>)>) interface. This allows sorting sequence points according to their IL offsets and performing binary searches in sorted arrays.

Inheritance Hierarchy

System..::.Object
  PostSharp.CodeModel..::.SymbolSequencePoint

See Also