This documentation is archived and is not being maintained.
Type::IsPrimitive Property
Visual Studio 2010
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 SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: