Type::IsPrimitive Property
Gets a value indicating whether the Type is one of the primitive types.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System::Booleantrue if the Type is one of the primitive types; otherwise, false.
Implements
_Type::IsPrimitiveThe following example demonstrates the IsContextful, IsMarshalByRef, and IsPrimitive properties of the Type class. It checks whether the given type can be hosted in the context, whether it can be marshaled by reference, and whether the type is a primitive data type.
using namespace System; using namespace System::Runtime::Remoting::Contexts; public ref class MyContextBoundClass: public ContextBoundObject { public: String^ myString; }; public ref class MyTypeDemoClass { public: void Demo() { try { // Determine whether the types can be hosted in a Context. Console::WriteLine( "The IsContextful property for the {0} type is {1}.", MyTypeDemoClass::typeid->Name, MyTypeDemoClass::typeid->IsContextful ); Console::WriteLine( "The IsContextful property for the {0} type is {1}.", MyContextBoundClass::typeid->Name, MyContextBoundClass::typeid->IsContextful ); // Determine whether the types are marshalled by reference. Console::WriteLine( "The MarshalByRef property of {0} is {1}.", MyTypeDemoClass::typeid->Name, MyTypeDemoClass::typeid->IsMarshalByRef ); Console::WriteLine( "The MarshalByRef property of {0} is {1}.", MyContextBoundClass::typeid->Name, MyContextBoundClass::typeid->IsMarshalByRef ); // Determine whether the types are primitive datatypes. Console::WriteLine( "Is {0} is a primitive data type? {1}.", int::typeid->Name, int::typeid->IsPrimitive ); Console::WriteLine( "Is {0} a primitive data type? {1}.", String::typeid->Name, String::typeid->IsPrimitive ); } catch ( Exception^ e ) { Console::WriteLine( "An exception occurred: {0}", e->Message ); } } }; int main() { MyTypeDemoClass^ mtdc = gcnew MyTypeDemoClass; mtdc->Demo(); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.