CodePrimitiveExpression Class
Represents a primitive data type value.
System.CodeDom::CodeObject
System.CodeDom::CodeExpression
System.CodeDom::CodePrimitiveExpression
Assembly: System (in System.dll)
The CodePrimitiveExpression type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | CodePrimitiveExpression() | Initializes a new instance of the CodePrimitiveExpression class. |
![]() | CodePrimitiveExpression(Object) | Initializes a new instance of the CodePrimitiveExpression class using the specified object. |
| Name | Description | |
|---|---|---|
![]() | UserData | Gets the user-definable data for the current object. (Inherited from CodeObject.) |
![]() | Value | Gets or sets the primitive data type to represent. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
CodePrimitiveExpression can be used to represent an expression that indicates a primitive data type value.
The Value property specifies the primitive data type value to represent.
Primitive data types that can be represented using CodePrimitiveExpression include nullptr; string; 16-, 32-, and 64-bit signed integers; and single-precision and double-precision floating-point numbers.
The following example demonstrates use of CodePrimitiveExpression to represent values of several primitive types.
// Represents a string. CodePrimitiveExpression^ stringPrimitive = gcnew CodePrimitiveExpression( "Test String" ); // Represents an integer. CodePrimitiveExpression^ intPrimitive = gcnew CodePrimitiveExpression( 10 ); // Represents a floating point number. CodePrimitiveExpression^ floatPrimitive = gcnew CodePrimitiveExpression( 1.03189 ); // Represents a null value expression. CodePrimitiveExpression^ nullPrimitive = gcnew CodePrimitiveExpression( 0 );
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.
