gpt4 book ai didi

asp.net - 通过反射获取其 getter 有可选值的属性的值

转载 作者:行者123 更新时间:2023-12-02 17:20:01 25 4
gpt4 key购买 nike

我正在检索控件的多个属性。以下是我用来检索属性的方法(使用 PropertyInfo 类型的 pinfo):

value = pinfo.GetValue(obj, nothing)

效果很好,但现在我面临一个具有可选值的属性,并且收到一条错误消息,告诉我参数数量不正确。所以我用这个改变了我的代码:

Dim index As Object() = {Nothing}
value = pinfo.GetValue(obj, index)

此时,我没有收到任何错误消息,但此代码没有检索到正确的值。仅当我将 Nothing 替换为属性访问器提供的默认值时,它才有效...

但是我事先并不知道这个默认值是什么!并且此代码在一个函数内,该函数检索没有可选值的属性,因此我无法更改代码,尤其是针对某种情况。

有什么想法吗?我正在开发 .NET 2.0

<小时/>

编辑:更精确地了解导致问题的案例

以下是导致问题的属性示例:

ReadOnly Property Foo(Optional ByVal Number As Integer = -1) As String
Get
If Number = -1 Then
Return "Your number is the default number: " & Number
Else
Return "Your number is " & Number
End If
End Get
End Property

对于这种属性,上面的代码都无法检索到正确的字符串。

我最好的猜测是尝试通用的第一个代码,捕获适当的异常,然后动态检索参数的默认值(在这种情况下为数字)及其 type,以便我可以使用此默认值调用 getValue

那么,如何检索可选参数的默认值?

最佳答案

这适用于可选参数:

ReadOnly Property Foo(Optional name As String = Nothing) As String
Get
If name Is Nothing Then
Return "Hello World"
Else
Return "Hello " & name
End If
End Get
End Property


Dim pinfo As Reflection.PropertyInfo = Me.GetType().GetProperty("Foo")
Dim value As Object = pinfo.GetValue(Me, New Object() {"Tim"}) ' Hello Tim '
value = pinfo.GetValue(Me, New Object(){Nothing}) ' Hello World '

编辑:根据您的评论,整数不起作用,我还不知道如何获取属性中可选参数的默认值。如果你知道它,你可以轻松地传递它,但否则会发生以下情况(注意 Int32.MinValue 作为默认值而不是 0):

ReadOnly Property Foo(Optional age As Int32 = Int32.MinValue) As String
Get
If age = Int32.MinValue Then
Return "I don't know how old i am"
Else
Return String.Format("I am {0} years old", age)
End If
End Get
End Property

Dim pinfo As Reflection.PropertyInfo = Me.GetType.GetProperty("Foo")
Dim value As Object = pinfo.GetValue(Me, New Object() {38}) ' I am 38 years old '
value = pinfo.GetValue(Me, New Object() {Nothing}) ' I am 0 years old '
value = pinfo.GetValue(Me, New Object() {Int32.MinValue}) ' I don't know how old i am '
<小时/>

编辑2:感谢@Rup,现在我知道了GetIndexParameters是缺失的部分。因此以下应该适用于任何类型的参数。

Dim pinfo As Reflection.PropertyInfo = Me.GetType.GetProperty("Foo")
Dim parameters() As Reflection.ParameterInfo = pinfo.GetIndexParameters()
Dim params(parameters.Length - 1) As Object
For i As Int32 = 0 To parameters.Length - 1
Dim paramInfo As Reflection.ParameterInfo = parameters(i)
If paramInfo.IsOptional Then
params(i) = paramInfo.DefaultValue
Else
If paramInfo.ParameterType.IsValueType Then
params(i) = Activator.CreateInstance(paramInfo.ParameterType)
Else
params(i) = Nothing
End If
End If
Next
Dim value As Object = pinfo.GetValue(Me, params)

关于asp.net - 通过反射获取其 getter 有可选值的属性的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9416890/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com