Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

142 lines
4.3 KiB
C#

//------------------------------------------------------------------------------
// <copyright file="CodeVariableDeclarationStatement.cs" company="Microsoft">
//
// <OWNER>[....]</OWNER>
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.CodeDom {
using System.Diagnostics;
using System;
using Microsoft.Win32;
using System.Collections;
using System.Runtime.InteropServices;
/// <devdoc>
/// <para>
/// Represents a local variable declaration.
/// </para>
/// </devdoc>
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeVariableDeclarationStatement : CodeStatement {
private CodeTypeReference type;
private string name;
private CodeExpression initExpression;
/// <devdoc>
/// <para>
/// Initializes a new instance of <see cref='System.CodeDom.CodeVariableDeclarationStatement'/>.
/// </para>
/// </devdoc>
public CodeVariableDeclarationStatement() {
}
/// <devdoc>
/// <para>
/// Initializes a new instance of <see cref='System.CodeDom.CodeVariableDeclarationStatement'/> using the specified type and name.
/// </para>
/// </devdoc>
public CodeVariableDeclarationStatement(CodeTypeReference type, string name) {
Type = type;
Name = name;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public CodeVariableDeclarationStatement(string type, string name) {
Type = new CodeTypeReference(type);
Name = name;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public CodeVariableDeclarationStatement(Type type, string name) {
Type = new CodeTypeReference(type);
Name = name;
}
/// <devdoc>
/// <para>
/// Initializes a new instance of <see cref='System.CodeDom.CodeVariableDeclarationStatement'/> using the specified type, name and
/// initialization expression.
/// </para>
/// </devdoc>
public CodeVariableDeclarationStatement(CodeTypeReference type, string name, CodeExpression initExpression) {
Type = type;
Name = name;
InitExpression = initExpression;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public CodeVariableDeclarationStatement(string type, string name, CodeExpression initExpression) {
Type = new CodeTypeReference(type);
Name = name;
InitExpression = initExpression;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public CodeVariableDeclarationStatement(Type type, string name, CodeExpression initExpression) {
Type = new CodeTypeReference(type);
Name = name;
InitExpression = initExpression;
}
/// <devdoc>
/// <para>
/// Gets or sets the initialization expression for the variable.
/// </para>
/// </devdoc>
public CodeExpression InitExpression {
get {
return initExpression;
}
set {
initExpression = value;
}
}
/// <devdoc>
/// <para>
/// Gets or sets the name of the variable.
/// </para>
/// </devdoc>
public string Name {
get {
return (name == null) ? string.Empty : name;
}
set {
name = value;
}
}
/// <devdoc>
/// <para>
/// Gets or sets the type of the variable.
/// </para>
/// </devdoc>
public CodeTypeReference Type {
get {
if (type == null) {
type = new CodeTypeReference("");
}
return type;
}
set {
type = value;
}
}
}
}