''' <summary>
''' Returns the default value of this parameter. If <see cref="HasExplicitDefaultValue"/>
''' returns false, then this property throws an InvalidOperationException.
''' </summary>
Public ReadOnly Property ExplicitDefaultValue As Object
Get
If HasExplicitDefaultValue Then
Return ExplicitDefaultConstantValue.Value
End If
Return ConstantValue.Nothing.Value
'throw New InvalidOperationException
End Get
End Property
Seems to work in the built IDE, yet the unit test have issues with it.
Modified
ParameterSymbol.vb
toSeems to work in the built IDE, yet the unit test have issues with it.