CSharp - What is the output: use the keyword "abstract" before the interface method

Question

can we use the keyword "abstract" before the interface method?

interface IMyInterface
{
   abstract void Show();
}


Click to view the answer

No

Note

methods from interface are implicitly abstract.

Related Quiz