primitive types in managed c++?

hi all;
basic managed c++ question:
are there any "primitive types" (int, long) that inherit from System::Object thus making them managed?
(something like the Integer class in java).
if so, conversion are provided, right?
cheers,
j.
[261 byte] By [Justis] at [2007-11-18 13:28:12]
# 1 Re: primitive types in managed c++?
In .NET, all the primitive forms are overriden as I understand it.

System::Int32 = int
System::Decimal = float
System::Double = double

etc.

I'm not sure if they are derived from System::Object however.
MooNull at 2007-11-9 12:02:10 >