Update Lesson 4 Task 2

This commit is contained in:
Stanislav Mykhailenko 2023-04-16 15:35:34 +03:00
parent b64a9ea7b9
commit 4920949c0f
GPG key ID: 1E95E66A9C9D6A36

View file

@ -10,9 +10,6 @@ namespace Open_Closed.Interfaces
{ {
string MagicType { get; } string MagicType { get; }
public void CountYourMagic() void CountYourMagic() => Console.WriteLine($"Your magic is {MagicType}.");
{
Console.WriteLine($"Your magic is {MagicType}.");
}
} }
} }