Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Util/TextDataUtil/MappingSpanSnapshot.cs')
-rw-r--r--src/Text/Util/TextDataUtil/MappingSpanSnapshot.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Text/Util/TextDataUtil/MappingSpanSnapshot.cs b/src/Text/Util/TextDataUtil/MappingSpanSnapshot.cs
index 88714fd..6f758ad 100644
--- a/src/Text/Util/TextDataUtil/MappingSpanSnapshot.cs
+++ b/src/Text/Util/TextDataUtil/MappingSpanSnapshot.cs
@@ -6,6 +6,7 @@ namespace Microsoft.VisualStudio.Text.Utilities
{
using System;
using System.Collections.Generic;
+ using System.Globalization;
using Microsoft.VisualStudio.Text.Projection;
internal class MappingSpanSnapshot : IMappingSpan
@@ -41,7 +42,7 @@ namespace Microsoft.VisualStudio.Text.Utilities
public NormalizedSnapshotSpanCollection GetSpans(ITextBuffer targetBuffer)
{
if (targetBuffer == null)
- throw new ArgumentNullException("targetBuffer");
+ throw new ArgumentNullException(nameof(targetBuffer));
if (_unmappable)
return NormalizedSnapshotSpanCollection.Empty;
@@ -76,7 +77,7 @@ namespace Microsoft.VisualStudio.Text.Utilities
public NormalizedSnapshotSpanCollection GetSpans(ITextSnapshot targetSnapshot)
{
if (targetSnapshot == null)
- throw new ArgumentNullException("targetSnapshot");
+ throw new ArgumentNullException(nameof(targetSnapshot));
if (_unmappable)
return NormalizedSnapshotSpanCollection.Empty;
@@ -203,7 +204,7 @@ namespace Microsoft.VisualStudio.Text.Utilities
public override string ToString()
{
- return String.Format("MappingSpanSnapshot anchored at {0}", _anchor);
+ return string.Format(CultureInfo.CurrentCulture, "MappingSpanSnapshot anchored at {0}", _anchor);
}
}
}