3 instantiations of StringInfo
Microsoft.CodeAnalysis.CSharp.EditorFeatures (3)
StringCopyPaste\StringInfo.cs (3)
102return new StringInfo( 142return new StringInfo( 172return new StringInfo(
9 references to StringInfo
Microsoft.CodeAnalysis.CSharp.EditorFeatures (9)
StringCopyPaste\AbstractPasteProcessor.cs (3)
64protected readonly StringInfo StringExpressionBeforePasteInfo; 67/// All the spans of <see cref="StringExpressionBeforePasteInfo"/>'s <see cref="StringInfo.ContentSpans"/> 114StringExpressionBeforePasteInfo = StringInfo.GetStringInfo(TextBeforePaste, stringExpressionBeforePaste);
StringCopyPaste\StringCopyPasteCommandHandler.cs (1)
333var contentSpans = StringInfo.GetStringInfo(snapshot.AsText(), stringExpression).ContentSpans;
StringCopyPaste\StringInfo.cs (5)
62public static StringInfo GetStringInfo(SourceText text, ExpressionSyntax stringExpression) 70private static StringInfo GetStringLiteralInfo(SourceText text, LiteralExpressionSyntax literal) 84private static StringInfo GetRawStringLiteralInfo(SourceText text, LiteralExpressionSyntax literal) 156private static StringInfo GetNormalStringLiteralStringInfo(SourceText text, LiteralExpressionSyntax literal) 181private static StringInfo GetInterpolatedStringInfo(