NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

CodeVariableDeclarationStatement Constructor (String, String, CodeExpression)

Initializes a new instance of CodeVariableDeclarationStatement using the specified type, name and initialization expression.

[Visual Basic]
Overloads Public Sub New( _
   ByVal type As String, _
   ByVal name As String, _
   ByVal initExpression As CodeExpression _
)
[C#]
public CodeVariableDeclarationStatement(
   string type,
   string name,
   CodeExpression initExpression
);
[C++]
public: CodeVariableDeclarationStatement(
   String* type,
   String* name,
   CodeExpression* initExpression
);
[JScript]
public function CodeVariableDeclarationStatement(
   type : String,
   name : String,
   initExpression : CodeExpression
);

Parameters

type
The type of the variable.
name
[To be supplied.]
initExpression
[To be supplied.]

See Also

CodeVariableDeclarationStatement Class | CodeVariableDeclarationStatement Members | System.CodeDOM Namespace | CodeVariableDeclarationStatement Constructor Overload List | CodeExpression