TextSpanHelper.IsSameSpan Method

Determines whether two spans are the same.

Namespace:  Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)

Syntax

'Declaration
Public Shared Function IsSameSpan ( _
    span1 As TextSpan, _
    span2 As TextSpan _
) As Boolean
'Usage
Dim span1 As TextSpan 
Dim span2 As TextSpan 
Dim returnValue As Boolean 

returnValue = TextSpanHelper.IsSameSpan(span1, _
    span2)
public static bool IsSameSpan(
    TextSpan span1,
    TextSpan span2
)
public:
static bool IsSameSpan(
    TextSpan span1, 
    TextSpan span2
)
public static function IsSameSpan(
    span1 : TextSpan, 
    span2 : TextSpan
) : boolean

Parameters

Return Value

Type: System.Boolean
Returns true if the start of span1 equals the start of span2 and the end of span1 equals the end of span2; otherwise, returns false.

.NET Framework Security

See Also

Reference

TextSpanHelper Class

TextSpanHelper Members

Microsoft.VisualStudio.Package Namespace