mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-04-08 18:35:09 +02:00
Fixed late bound resolution warnings
This commit is contained in:
parent
de646d5030
commit
3b3f2a8b8b
@ -95,10 +95,10 @@ Public Class ObjectDump
|
||||
If listDump <> "" Then
|
||||
listDump &= ", "
|
||||
End If
|
||||
If valueArray(i) Is Nothing Then
|
||||
If valueArray.GetValue(i) Is Nothing Then
|
||||
listDump &= "Nothing"
|
||||
Else
|
||||
listDump &= valueArray(i).ToString()
|
||||
listDump &= valueArray.GetValue(i).ToString()
|
||||
End If
|
||||
Next
|
||||
listDump = "{" & listDump & "}"
|
||||
@ -119,10 +119,10 @@ Public Class ObjectDump
|
||||
If listDump <> "" Then
|
||||
listDump &= ", "
|
||||
End If
|
||||
If valueArray(i) Is Nothing Then
|
||||
If valueArray.GetValue(i) Is Nothing Then
|
||||
listDump &= "Nothing"
|
||||
Else
|
||||
listDump &= valueArray(i).ToString()
|
||||
listDump &= valueArray.GetValue(i).ToString()
|
||||
End If
|
||||
Next
|
||||
listDump = "{" & listDump & "}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user