We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b142228 commit 8fffc3cCopy full SHA for 8fffc3c
src/algorithm_exercises_csharp/Hello.cs
@@ -4,12 +4,9 @@ namespace algorithm_exercises_csharp;
4
5
public class HelloWorld
6
{
7
- const string __message = "Hello World!";
+ private readonly string __message = "Hello World!";
8
9
- [ExcludeFromCodeCoverage]
10
- protected HelloWorld() { }
11
-
12
- public static string hello()
+ public string hello()
13
14
return __message;
15
}
0 commit comments