Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
CodeExpressionStatement Class
Definition
- Namespace:
- System.CodeDom
- Assembly:
- System.CodeDom.dll
- Assembly:
- System.dll
- Package:
- System.CodeDom v11.0.0-preview.5.26302.115
- Source:
- CodeExpressionStatement.cs
- Source:
- CodeExpressionStatement.cs
- Source:
- CodeExpressionStatement.cs
- Source:
- CodeExpressionStatement.cs
- Source:
- CodeExpressionStatement.cs
- Source:
- CodeExpressionStatement.cs
- Source:
- CodeExpressionStatement.cs
- Source:
- CodeExpressionStatement.cs
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a statement that consists of a single expression.
public ref class CodeExpressionStatement : System::CodeDom::CodeStatement
public class CodeExpressionStatement : System.CodeDom.CodeStatement
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeExpressionStatement : System.CodeDom.CodeStatement
type CodeExpressionStatement = class
inherit CodeStatement
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeExpressionStatement = class
inherit CodeStatement
Public Class CodeExpressionStatement
Inherits CodeStatement
- Inheritance
- Attributes
Examples
The following example demonstrates how to create an instance of the CodeExpressionStatement class by using a CodeExpression object.
// Creates a code expression for a CodeExpressionStatement to contain.
CodeExpression invokeExpression = new CodeMethodInvokeExpression(
new CodeTypeReferenceExpression("Console"),
"Write", new CodePrimitiveExpression("Example string") );
// Creates a statement using a code expression.
CodeExpressionStatement expressionStatement;
expressionStatement = new CodeExpressionStatement( invokeExpression );
// A C# code generator produces the following source code for the preceeding example code:
// Console.Write( "Example string" );
' Creates a code expression for a CodeExpressionStatement to contain.
Dim invokeExpression = New CodeMethodInvokeExpression( _
New CodeTypeReferenceExpression("Console"), "Write", _
New CodePrimitiveExpression("Example string"))
' Creates a statement using a code expression.
Dim expressionStatement As CodeExpressionStatement
expressionStatement = New CodeExpressionStatement(invokeExpression)
' A C# code generator produces the following source code for the preceeding example code:
' Console.Write( "Example string" );
Remarks
A CodeExpressionStatement contains a CodeExpression object, and it can be added to a CodeStatementCollection object, allowing some expressions to stand alone. For example, a CodeMethodInvokeExpression contained by a CodeExpressionStatement can represent a method call without a return value.
Constructors
| Name | Description |
|---|---|
| CodeExpressionStatement() |
Initializes a new instance of the CodeExpressionStatement class. |
| CodeExpressionStatement(CodeExpression) |
Initializes a new instance of the CodeExpressionStatement class by using the specified expression. |
Properties
| Name | Description |
|---|---|
| EndDirectives |
Gets a CodeDirectiveCollection object that contains end directives. (Inherited from CodeStatement) |
| Expression |
Gets or sets the expression for the statement. |
| LinePragma |
Gets or sets the line on which the code statement occurs. (Inherited from CodeStatement) |
| StartDirectives |
Gets a CodeDirectiveCollection object that contains start directives. (Inherited from CodeStatement) |
| UserData |
Gets the user-definable data for the current object. (Inherited from CodeObject) |
Methods
| Name | Description |
|---|---|
| Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
| GetHashCode() |
Serves as the default hash function. (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) |
Applies to
Feedback
Was this page helpful?
