CodeExpression Class

Definition

Represents a code expression. This is a base class for other code expression objects that is never instantiated.

public ref class CodeExpression : System::CodeDom::CodeObject
public class CodeExpression : System.CodeDom.CodeObject
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeExpression : System.CodeDom.CodeObject
type CodeExpression = class
    inherit CodeObject
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeExpression = class
    inherit CodeObject
Public Class CodeExpression
Inherits CodeObject
Inheritance
CodeExpression
Derived
Attributes

Remarks

CodeExpression provides a base class for code expressions within the System.CodeDom namespace. CodeExpression is never instantiated. Instead it provides an abstract base class for other types of code expressions.

Constructors

CodeExpression()

Initializes a new instance of the CodeExpression class.

Properties

UserData

Gets the user-definable data for the current object.

(Inherited from CodeObject)

Methods

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

See also