File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ Module Program
14
14
Private Sub _demoDumpAndLog()
15
15
Console.Write( "Press enter key to dump demo data and write it to HDD." )
16
16
Console.ReadLine()
17
+ Console.WriteLine()
18
+
17
19
Dim demoObject = New Dictionary( Of String , Object )() From {
18
20
{ "clark" , New With {
19
21
.name = "Clark" ,
@@ -33,25 +35,34 @@ Module Program
33
35
}
34
36
Debug.Dump(demoObject)
35
37
Debug.Log(demoObject)
38
+
39
+ Console.WriteLine()
40
+ Console.WriteLine()
36
41
End Sub
37
42
38
43
Private Sub _demoException()
39
44
Console.Write( "Press enter key to dump catched demo exception and write it to HDD." )
40
45
Console.ReadLine()
46
+ Console.WriteLine()
41
47
42
48
Try
43
49
Throw New Exception( "Demo exception:-)" )
44
50
Catch ex As Exception
45
51
Debug.Dump(ex)
46
52
Debug.Log(ex)
47
53
End Try
54
+
55
+ Console.WriteLine()
48
56
End Sub
49
57
50
58
Private Sub _runTests()
51
59
Console.Write( "Pres enter key to start duping test objects." )
52
60
Console.ReadLine()
61
+ Console.WriteLine()
62
+
53
63
Dim dlTest = New Tests.DumpingAndLoging()
54
64
dlTest.TestAll()
65
+
55
66
Dim eTest = New Tests.ExceptionsRendering()
56
67
eTest.TestAll()
57
68
End Sub
You can’t perform that action at this time.
0 commit comments