dotnet/roslyn

Scripting: Improve formatting of anonymous types

Open

#6.103 aberto em 17 de out. de 2015

Ver no GitHub
 (1 comment) (0 reactions) (0 assignees)C# (4.257 forks)batch import
Area-InteractiveFeature RequestInteractive-ScriptingIDEhelp wanted

Métricas do repositório

Stars
 (20.414 stars)
Métricas de merge de PR
 (Mesclagem média 5d 21h) (286 fundiu PRs em 30d)

Description

Instead of

> new { X = 1, Y = 2 }
<>f__AnonymousType0#4<int, int>(\{ X = 1, Y = 2 })

Print something like

> new { X = 1, Y = 2 }
{ X = 1, Y = 2 }

Guia do colaborador