Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有可为空的 DateTime 对象:
DateTime? returnTime;
但是,我无法获得它的 Date 属性。实际上,该对象没有任何可用的 DateTime 属性。
我怎样才能做到这一点?
假设您正在使用 C# 来回答:您正在使用可为空的类型,因此您可以检查是否有一个值.HasValue并通过以下方式获取该值.Value:
.HasValue
.Value
if (returnTime.HasValue) foo(returnTime.Value);