//------------------------------------------------------------------------------ // // // [....] // 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 local variable declaration. /// /// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeVariableDeclarationStatement : CodeStatement { private CodeTypeReference type; private string name; private CodeExpression initExpression; /// /// /// Initializes a new instance of . /// /// public CodeVariableDeclarationStatement() { } /// /// /// Initializes a new instance of using the specified type and name. /// /// public CodeVariableDeclarationStatement(CodeTypeReference type, string name) { Type = type; Name = name; } /// /// [To be supplied.] /// public CodeVariableDeclarationStatement(string type, string name) { Type = new CodeTypeReference(type); Name = name; } /// /// [To be supplied.] /// public CodeVariableDeclarationStatement(Type type, string name) { Type = new CodeTypeReference(type); Name = name; } /// /// /// Initializes a new instance of using the specified type, name and /// initialization expression. /// /// public CodeVariableDeclarationStatement(CodeTypeReference type, string name, CodeExpression initExpression) { Type = type; Name = name; InitExpression = initExpression; } /// /// [To be supplied.] /// public CodeVariableDeclarationStatement(string type, string name, CodeExpression initExpression) { Type = new CodeTypeReference(type); Name = name; InitExpression = initExpression; } /// /// [To be supplied.] /// public CodeVariableDeclarationStatement(Type type, string name, CodeExpression initExpression) { Type = new CodeTypeReference(type); Name = name; InitExpression = initExpression; } /// /// /// Gets or sets the initialization expression for the variable. /// /// public CodeExpression InitExpression { get { return initExpression; } set { initExpression = value; } } /// /// /// Gets or sets the name of the variable. /// /// public string Name { get { return (name == null) ? string.Empty : name; } set { name = value; } } /// /// /// Gets or sets the type of the variable. /// /// public CodeTypeReference Type { get { if (type == null) { type = new CodeTypeReference(""); } return type; } set { type = value; } } } }