Skip to content

Commit 31a891b

Browse files
committed
printscreen image and new lines in source code
1 parent 3837087 commit 31a891b

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

Program.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ static void Main(string[] args) {
1414
private static void _demoDumpAndLog() {
1515
Console.Write("Press enter key to dump demo data and write it to HDD.");
1616
Console.ReadLine();
17+
Console.WriteLine();
1718

1819
var demoObject = new Dictionary<string, object>() {
1920
{ "clark", new {
@@ -35,21 +36,29 @@ private static void _demoDumpAndLog() {
3536

3637
Debug.Dump(demoObject);
3738
Debug.Log(demoObject);
39+
40+
Console.WriteLine();
41+
Console.WriteLine();
3842
}
3943
private static void _demoException () {
4044
Console.Write("Press enter key to dump catched demo exception and write it to HDD.");
4145
Console.ReadLine();
46+
Console.WriteLine();
4247

4348
try {
4449
throw new Exception("Demo exception:-)");
4550
} catch (Exception ex) {
4651
Debug.Dump(ex);
4752
Debug.Log(ex);
4853
}
54+
55+
Console.WriteLine();
56+
Console.WriteLine();
4957
}
5058
private static void _runTests () {
5159
Console.Write("Pres enter key to start duping test objects.");
5260
Console.ReadLine();
61+
Console.WriteLine();
5362

5463
var dlTest = new Tests.DumpingAndLoging();
5564
dlTest.TestAll();

printscreen.png

46.1 KB
Loading

0 commit comments

Comments
 (0)