Area-IDEConcept-Continuous Improvementhelp wanted
Repository-Metriken
- Stars
- (20.414 Sterne)
- PR-Merge-Metriken
- (Durchschn. Merge 6T 17h) (256 gemergte PRs in 30 T)
Beschreibung
Version Used: 16.5.0 Preview 2.0 [29615.19.master]
Steps to Reproduce:
class Program
{
static void F(int a, int b, int c)
{
}
static void Main()
{
F(1, b: 2, 3);
}
}
- Invoke change signature on F
- Move parameter
ato the end of the signature.

Expected Behavior:
class Program
{
static void F(int b, int c, int a)
{
}
static void Main()
{
F(b: 2, 3, 1);
}
}
Actual Behavior:
class Program
{
static void F(int b, int c, int a)
{
}
static void Main()
{
F(b: 2, c: 3, a: 1);
}
}