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)
198
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.StartDelimiterSpan.End, 0), NewLine +
IndentationWhitespace
));
214
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.EndDelimiterSpan.Start, 0), NewLine +
IndentationWhitespace
));
270
builder.Append(
IndentationWhitespace
);
272
else if (offset <
IndentationWhitespace
.Length)
280
builder.Append(
IndentationWhitespace
[offset..]);
295
builder.Append(
IndentationWhitespace
);
StringCopyPaste\UnknownSourcePasteProcessor.cs (3)
170
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.StartDelimiterSpan.End, 0), NewLine +
IndentationWhitespace
));
205
buffer.Append(
IndentationWhitespace
);
214
edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.EndDelimiterSpan.Start, 0), NewLine +
IndentationWhitespace
));