public void DoSomething(DateTime? timestamp);
现在我想从c / cli调用这个方法:
MyClass->DoSomething(nullptr);
这不会编译.相反,c编译器将打印错误消息,nullptr无法转换为System :: Nullable.
那么如何将nullptr从c传递给可空的DateTime?
MyClass->DoSomething(Nullable<DateTime>());
How to use Nullable types in c++/cli?