如何通过反射获取 Nullable 类型的值

发布于 2024-10-20 07:39:39 字数 425 浏览 2 评论 0原文

使用反射,我需要检索 可为 Null 类型的 DateTime 的属性值,

我该如何执行此操作?

当我尝试 propertyInfo.GetValue(object, null) 它不起作用。

谢谢

我的代码:

 var propertyInfos = myClass.GetType().GetProperties();

 foreach (PropertyInfo propertyInfo in propertyInfos)
 {
     object propertyValue= propertyInfo.GetValue(myClass, null);
 }

对于可为 null 的类型,propertyValue 结果始终为 null

Using reflection I need to retrieve the value of a propery of a Nullable Type of DateTime

How can I do this?

When I try propertyInfo.GetValue(object, null) it does not function.

thx

My code:

 var propertyInfos = myClass.GetType().GetProperties();

 foreach (PropertyInfo propertyInfo in propertyInfos)
 {
     object propertyValue= propertyInfo.GetValue(myClass, null);
 }

propertyValue result always null for nullable type

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

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

发布评论

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

评论(2

陌若浮生 2024-10-27 07:39:39

反射和 Nullable 有点麻烦;反射使用object,并且Nullableobject有特殊的装箱/拆箱规则。因此,当您拥有一个对象时,它不再是一个Nullable - 它要么是null值本身

即,

int? a = 123, b = null;
object c = a; // 123 as a boxed int
object d = b; // null

这有时会让人有点困惑,并且请注意,您无法从具有已被装箱,因为您所拥有的只是 null

Reflection and Nullable<T> are a bit of a pain; reflection uses object, and Nullable<T> has special boxing/unboxing rules for object. So by the time you have an object it is no longer a Nullable<T> - it is either null or the value itself.

i.e.

int? a = 123, b = null;
object c = a; // 123 as a boxed int
object d = b; // null

This makes it a bit confusing sometimes, and note that you can't get the original T from an empty Nullable<T> that has been boxed, as all you have is a null.

瀟灑尐姊 2024-10-27 07:39:39

给定简单的类:

public class Foo
{
    public DateTime? Bar { get; set; }
}

并且代码:

Foo foo = new Foo();

foo.Bar = DateTime.Now;

PropertyInfo pi = foo.GetType().GetProperty("Bar");

object value = pi.GetValue(foo, null);

value 具有 null (如果 .Bar 为 null)或 DateTime 值。这其中的哪一部分不适合您?

Given simple class:

public class Foo
{
    public DateTime? Bar { get; set; }
}

And the code:

Foo foo = new Foo();

foo.Bar = DateTime.Now;

PropertyInfo pi = foo.GetType().GetProperty("Bar");

object value = pi.GetValue(foo, null);

value has either null (if .Bar is null) or the DateTime value. What part of this isn't working for you?

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