如何获取非类型化对象的值?

发布于 2024-10-27 18:40:25 字数 260 浏览 1 评论 0原文

我想获取一个对象类型的属性值。这是我的代码:

 Type tip = Type.GetType(pair.Key.GetType().ToString());

  object uretilenNesne = Activator.CreateInstance(tip);

uretilenNesne 具有正确的类型,但我想访问 uretilenNesne 的属性值。你有什么想法吗?

KR,

达克马兹

I want to get an object typed properties values. Here is my code:

 Type tip = Type.GetType(pair.Key.GetType().ToString());

  object uretilenNesne = Activator.CreateInstance(tip);

uretilenNesne has correct type but I want to access uretilenNesne's properties values. Do you have any idea?

KR,

Dakmaz

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆夏时光 2024-11-03 18:40:25
  1. 您知道您想要在编译时访问的属性的名称吗?如果是,那么您可以使用动态数据类型:

    类型提示 = Type.GetType(pair.Key.GetType().ToString());
    
    动态 uretilenNesne = Activator.CreateInstance(tip);
    
    var x = uretilenNesne.someProperty;
    
  2. 如果您在运行时知道属性的名称,则可以使用反射:Type.GetProperty 将返回具有给定签名的可访问属性与 PropertyInfo.GetValue 或 SetValue。示例:

    类型提示 = Type.GetType(pair.Key.GetType().ToString());
    对象 uretilenNesne = Activator.CreateInstance(tip);
    
    PropertyInfo pinfo = Tip.GetProperty("someProperty");
    对象 x = pinfo.GetValue(uretilenNesne, null);
    
  3. 如果您不知道属性的名称,请使用类型.GetProperties 获取所有属性的数组。

  1. Do you know the name of the property you want to access at compile time? If yes, then you can use the dynamic data type:

    Type tip = Type.GetType(pair.Key.GetType().ToString());
    
    dynamic uretilenNesne = Activator.CreateInstance(tip);
    
    var x = uretilenNesne.someProperty;
    
  2. If you know the name of the property at run time, you can use reflection: Type.GetProperty will return a property with a given signature that can be accessed with PropertyInfo.GetValue or SetValue. Example:

    Type tip = Type.GetType(pair.Key.GetType().ToString());
    object uretilenNesne = Activator.CreateInstance(tip);
    
    PropertyInfo pinfo = tip.GetProperty("someProperty");
    object x = pinfo.GetValue(uretilenNesne, null);
    
  3. If you don't know the name of the property, use Type.GetProperties to get an array of all the properties.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文