1 write to IndentationWhitespace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
StringCopyPaste\AbstractPasteProcessor.cs (1)
102
IndentationWhitespace
= indentationWhitespace;
9 references to IndentationWhitespace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (9)
StringCopyPaste\KnownSourcePasteProcessor.cs (6)
197
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.StartDelimiterSpan.End, 0), NewLine +
IndentationWhitespace
));
213
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.EndDelimiterSpan.Start, 0), NewLine +
IndentationWhitespace
));
269
builder.Append(
IndentationWhitespace
);
271
else if (offset <
IndentationWhitespace
.Length)
279
builder.Append(
IndentationWhitespace
[offset..]);
294
builder.Append(
IndentationWhitespace
);
StringCopyPaste\UnknownSourcePasteProcessor.cs (3)
169
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.StartDelimiterSpan.End, 0), NewLine +
IndentationWhitespace
));
204
buffer.Append(
IndentationWhitespace
);
213
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.EndDelimiterSpan.Start, 0), NewLine +
IndentationWhitespace
));