1 write to IndentationWhitespace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
StringCopyPaste\AbstractPasteProcessor.cs (1)
108
IndentationWhitespace
= indentationWhitespace;
9 references to IndentationWhitespace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (9)
StringCopyPaste\KnownSourcePasteProcessor.cs (6)
210
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.StartDelimiterSpan.End, 0), NewLine +
IndentationWhitespace
));
226
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.EndDelimiterSpan.Start, 0), NewLine +
IndentationWhitespace
));
282
builder.Append(
IndentationWhitespace
);
284
else if (offset <
IndentationWhitespace
.Length)
292
builder.Append(
IndentationWhitespace
[offset..]);
307
builder.Append(
IndentationWhitespace
);
StringCopyPaste\UnknownSourcePasteProcessor.cs (3)
177
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.StartDelimiterSpan.End, 0), NewLine +
IndentationWhitespace
));
212
buffer.Append(
IndentationWhitespace
);
221
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.EndDelimiterSpan.Start, 0), NewLine +
IndentationWhitespace
));