-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Labels
Area-IDEFeature - Run File#: and #! directives and file-based C# programs#: and #! directives and file-based C# programs
Milestone
Description
Version Used: main
Steps to Reproduce:
#:property Configuration=Release
using System.Collections;
class A : I
{
}
interface I
{
void M(System.DateTime dt, System.IO.FileInfo f);
}Invoke "implement interface" code fix.
Expected Behavior:
#:property Configuration=Release
using System;
using System.Collections;
using System.IO;
class A : I
{
public void M(DateTime dt, FileInfo f)
{
throw new NotImplementedException();
}
}
interface I
{
void M(System.DateTime dt, System.IO.FileInfo f);
}Actual Behavior:
#:property Configuration=Release
using System;
# : property Configuration=Release
using System.Collections;
using System.IO;
class A : I
{
public void M(DateTime dt, FileInfo f)
{
throw new NotImplementedException();
}
}
interface I
{
void M(System.DateTime dt, System.IO.FileInfo f);
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Area-IDEFeature - Run File#: and #! directives and file-based C# programs#: and #! directives and file-based C# programs