CodePrimitiveExpression Class
Represents a primitive data type value.
Assembly: System (in System.dll)
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 Nothing; 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. Dim stringPrimitive As New CodePrimitiveExpression("Test String") ' Represents an integer. Dim intPrimitive As New CodePrimitiveExpression(10) ' Represents a floating point number. Dim floatPrimitive As New CodePrimitiveExpression(1.03189) ' Represents a null value expression. Dim nullPrimitive As New CodePrimitiveExpression(Nothing)
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodePrimitiveExpression
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
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.