Skip to main content
๐Ÿ› Bug HuntC# C# / .NET Hardโšก+35 XP

Interface Not Implemented

This code won't compile.

๐Ÿ› Find the bug
1interface IShape { double Area(); }
2class Circle : IShape { double radius; }
๐Ÿ› The bug is on line 2

๐Ÿ”ง Select the correct fix: