在vb.net中使用其名称访问属性

前端之家收集整理的这篇文章主要介绍了在vb.net中使用其名称访问属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
例如:
Sub Test()
  Dim car as new MyCar
  car.chassis.wheel.radius = 15
  Console.WriteLine(car.chassis.wheel.radius)    
End Sub

所以问题是.是否可以使用其字符串名称访问该属性
东西(“car.chassis.wheel.radius”)= 15?

你可以,但不像你的问题那样简洁.

函数将按名称获取任何对象的任何属性.

Public Function GetPropertyValue(ByVal obj As Object,ByVal PropName As String) As Object
    Dim objType As Type = obj.GetType()
    Dim pInfo As System.Reflection.PropertyInfo = objType.GetProperty(PropName)
    Dim PropValue As Object = pInfo.GetValue(obj,Reflection.BindingFlags.GetProperty,Nothing,Nothing)
    Return PropValue
End Function

我给你留下错误处理.任何后果:)

原文链接:https://www.f2er.com/vb/255523.html

猜你在找的VB相关文章