Skip to content

Commit 1895fa2

Browse files
committed
Update readme
1 parent 2e9663b commit 1895fa2

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ There is a need to add the ``Name``, the MethodName, and the ``Parameters``param
2626
In my **DLLTest** example I have three methods:
2727
```C#
2828
public static void ShowMessage(string message, string title = "Message")
29-
{
30-
MessageBox.Show(message, title, MessageBoxButtons.OK, MessageBoxIcon.Information);
31-
}
32-
33-
public static void PrintHelloWorld()
34-
{
35-
Console.WriteLine("Hello, World!");
36-
}
37-
38-
public static int AddTwoValues(int val1, int val2)
39-
{
40-
return val1 + val2;
41-
}
29+
{
30+
MessageBox.Show(message, title, MessageBoxButtons.OK, MessageBoxIcon.Information);
31+
}
32+
33+
public static void PrintHelloWorld()
34+
{
35+
Console.WriteLine("Hello, World!");
36+
}
37+
38+
public static int AddTwoValues(int val1, int val2)
39+
{
40+
return val1 + val2;
41+
}
4242
```
4343

4444
That's the reason my ``config.json`` is in that way.

0 commit comments

Comments
 (0)