Skip to content

Commit 8fffc3c

Browse files
author
Gonzalo Diaz
committed
split-off! WIP
1 parent b142228 commit 8fffc3c

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/algorithm_exercises_csharp/Hello.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,9 @@ namespace algorithm_exercises_csharp;
44

55
public class HelloWorld
66
{
7-
const string __message = "Hello World!";
7+
private readonly string __message = "Hello World!";
88

9-
[ExcludeFromCodeCoverage]
10-
protected HelloWorld() { }
11-
12-
public static string hello()
9+
public string hello()
1310
{
1411
return __message;
1512
}

0 commit comments

Comments
 (0)