I have a C++/CLI wrapper class to interop between C# and native C++. I'm getting a strange error related with System.Nullable. I understand that, for basic types, System.Nullable<T> is equivalent to T?. So I do this:
C#:
public int? RoboticsArmRotation {
get { return mRobotics.ArmRotation; }
}
C++/CLI, interface:
virtual property System::Nullable<int>^ ArmRotation{ System::Nullable<int>^ get() = 0; }
C++/CLI, concrete class:
virtual property System::Nullable<int>^ ArmRotation {
System::Nullable<int>^ get() {
boost::optional<int> value = m_pNativeInstance->getArmRotation();
return value.is_initialized()? gcnew System::Nullable<int>(value.get()) : gcnew System::Nullable<int>();
}
}
But I get the title's compile error. Casting to int? solves it, but what bugs me is that it's saying System.ValueType when I defined my nullable as a reference. Can I leave the cast and move on, or am I doing something wrong?
Nullable<T>is a value type, not a reference type. – Daniel A. White Dec 23 '11 at 12:36gcnew?Nullable<T>is a value type, not a reference type. Willgcnewbox, or does that only work for reference types? – Lasse V. Karlsen Dec 23 '11 at 12:38System.ValueType(which is a reference type) and some metadata. – CodesInChaos Dec 23 '11 at 12:43