dotnet/roslyn

Pasting multiline text into XML comments should make it comments

Open

#17,383 opened on Feb 25, 2017

View on GitHub
 (1 comment) (0 reactions) (0 assignees)C# (20,414 stars) (4,257 forks)batch import
Area-IDEhelp wanted

Description

Version Used: 2.0.0.61422

Steps to Reproduce:

/// <summary>
/// |
/// </summary>

Paste multiline text.

Expected Behavior:

/// <summary>
/// Line 1
/// Line 2
/// Line 3
/// </summary>

Actual Behavior:

/// <summary>
/// Line 1
    Line 2
    Line 3
/// </summary>

Contributor guide