Modules.Interfaces: PropertyValue kann NULL sein, wenn der Knoten leer ist, aber Nothing (vb) ist nicht gleich NULL (c#)
This commit is contained in:
parent
35d8021278
commit
32f87e25f5
@ -343,8 +343,9 @@ Public Class PropertyValues
|
||||
|
||||
Return DoGetFinalPropValue(Value)
|
||||
Else
|
||||
If Value = Nothing Then
|
||||
Return Nothing
|
||||
' Nothing kann auch der Default-Wert der Variablen bedeuten. Also auch 0.00
|
||||
If IsNothing(Value) Then
|
||||
Return String.Empty
|
||||
Else
|
||||
Return Value.ToString
|
||||
End If
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user