从 c++ 调用 c#:如何将 nullptr 传递给 DateTime?

发布于 2024-10-29 04:31:23 字数 338 浏览 2 评论 0原文

在 c# 程序集中,我得到一个以可为空的 DateTime 作为参数的函数:

public void DoSomething(DateTime? timestamp);

现在我想从 c++/cli 调用此方法:

MyClass->DoSomething(nullptr);

这将无法编译。相反,C++ 编译器将打印一条错误消息 nullptr can not be conversion to System::Nullable。

那么如何将 nullptr 从 C++ 传递给可为空的 DateTime?

In a c# assembly, I got a function taking a nullable DateTime as parameter:

public void DoSomething(DateTime? timestamp);

Now I want to call this method from c++/cli:

MyClass->DoSomething(nullptr);

This will not compile. Instead the c++ compiler will print an error message nullptr can not be converted to System::Nullable.

So how do I pass nullptr from c++ to a nullable DateTime?

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

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

发布评论

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

评论(2

愛上了 2024-11-05 04:31:23
MyClass->DoSomething(Nullable<DateTime>());

如何在 c++/cli 中使用 Nullable 类型?

MyClass->DoSomething(Nullable<DateTime>());

How to use Nullable types in c++/cli?

多情癖 2024-11-05 04:31:23

Nullable 是一种值类型,C++/CLI 不为其提供编译时魔法。你需要走显式的路线:

System::Nullable<System::DateTime> dtnull;
MyClass->DoSomething(dtnull);

当然,你也可以在这里使用临时的:

MyClass->DoSomething(System::Nullable<System::DateTime>());

Nullable is a value type and C++/CLI doesn’t provide compile-time magic for it. You need to go the explicit route:

System::Nullable<System::DateTime> dtnull;
MyClass->DoSomething(dtnull);

Of course, you can also use a temporary here:

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