//------------------------------------------------------------------------------ // // // Microsoft // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; /// /// /// Represents /// a statement that is an expression. /// /// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeExpressionStatement : CodeStatement { private CodeExpression expression; /// /// [To be supplied.] /// public CodeExpressionStatement() { } /// /// [To be supplied.] /// public CodeExpressionStatement(CodeExpression expression) { this.expression = expression; } /// /// [To be supplied.] /// public CodeExpression Expression { get { return expression; } set { expression = value; } } } }