TextSpanHelper.IsSameSpan Method
Determines whether two spans are the same.
Namespace: Microsoft.VisualStudio.Package
Assemblies: Microsoft.VisualStudio.Package.LanguageService.11.0 (in Microsoft.VisualStudio.Package.LanguageService.11.0.dll)
Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
Syntax
‘선언
Public Shared Function IsSameSpan ( _
span1 As TextSpan, _
span2 As TextSpan _
) As Boolean
public static bool IsSameSpan(
TextSpan span1,
TextSpan span2
)
Parameters
- span1
Type: Microsoft.VisualStudio.TextManager.Interop.TextSpan
[in] The first TextSpan object.
- span2
Type: Microsoft.VisualStudio.TextManager.Interop.TextSpan
[in] The second TextSpan object.
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.