File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ Module Program
1414 Private Sub _demoDumpAndLog()
1515 Console.Write( "Press enter key to dump demo data and write it to HDD." )
1616 Console.ReadLine()
17+ Console.WriteLine()
18+
1719 Dim demoObject = New Dictionary( Of String , Object )() From {
1820 { "clark" , New With {
1921 .name = "Clark" ,
@@ -33,25 +35,34 @@ Module Program
3335 }
3436 Debug.Dump(demoObject)
3537 Debug.Log(demoObject)
38+
39+ Console.WriteLine()
40+ Console.WriteLine()
3641 End Sub
3742
3843 Private Sub _demoException()
3944 Console.Write( "Press enter key to dump catched demo exception and write it to HDD." )
4045 Console.ReadLine()
46+ Console.WriteLine()
4147
4248 Try
4349 Throw New Exception( "Demo exception:-)" )
4450 Catch ex As Exception
4551 Debug.Dump(ex)
4652 Debug.Log(ex)
4753 End Try
54+
55+ Console.WriteLine()
4856 End Sub
4957
5058 Private Sub _runTests()
5159 Console.Write( "Pres enter key to start duping test objects." )
5260 Console.ReadLine()
61+ Console.WriteLine()
62+
5363 Dim dlTest = New Tests.DumpingAndLoging()
5464 dlTest.TestAll()
65+
5566 Dim eTest = New Tests.ExceptionsRendering()
5667 eTest.TestAll()
5768 End Sub
You can’t perform that action at this time.
0 commit comments