From c08c1d8c6d8f5f0a2819b6b80c6e0d6bee537076 Mon Sep 17 00:00:00 2001 From: Dominik Mahnkopf <22577070+dmahnkopf@users.noreply.github.com> Date: Sun, 30 Jun 2019 16:23:26 +0200 Subject: [PATCH] two-fer: fix compilation issues (#1290) * two-fer: fix compilation issues * two-fer: exchange parameter with comment * two-fer: adjust comment Making it more readable Co-Authored-By: Erik Schierboom --- exercises/two-fer/TwoFer.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/exercises/two-fer/TwoFer.cs b/exercises/two-fer/TwoFer.cs index 261a1993e7..7012aa556a 100644 --- a/exercises/two-fer/TwoFer.cs +++ b/exercises/two-fer/TwoFer.cs @@ -1,5 +1,9 @@ -public static class TwoFer +using System; + +public static class TwoFer { + // In order to get the tests running, first you need to make sure the Speak method + // can be called both without any arguments and also by passing one string argument. public static string Speak() { throw new NotImplementedException("You need to implement this function.");