Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeVariableDeclarationStatement.cs / 1 / CodeVariableDeclarationStatement.cs
//------------------------------------------------------------------------------ //// 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; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeVariableDeclarationStatement : CodeStatement { private CodeTypeReference type; private string name; private CodeExpression initExpression; ////// Represents a local variable declaration. /// ////// public CodeVariableDeclarationStatement() { } ////// Initializes a new instance of ///. /// /// public CodeVariableDeclarationStatement(CodeTypeReference type, string name) { Type = type; Name = name; } ////// Initializes a new instance of ///using the specified type and name. /// /// 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; } ///[To be supplied.] ////// public CodeVariableDeclarationStatement(CodeTypeReference type, string name, CodeExpression initExpression) { Type = type; Name = name; InitExpression = initExpression; } ////// Initializes a new instance of ///using the specified type, name and /// initialization expression. /// /// 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; } ///[To be supplied.] ////// public CodeExpression InitExpression { get { return initExpression; } set { initExpression = value; } } ////// Gets or sets the initialization expression for the variable. /// ////// public string Name { get { return (name == null) ? string.Empty : name; } set { name = value; } } ////// Gets or sets the name of the variable. /// ////// public CodeTypeReference Type { get { if (type == null) { type = new CodeTypeReference(""); } return type; } set { type = value; } } } }/// Gets or sets the type of the variable. /// ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlDataImplementation.cs
- HtmlUtf8RawTextWriter.cs
- RightsManagementEncryptedStream.cs
- LinkArea.cs
- ClientEventManager.cs
- ControlTemplate.cs
- FlowLayout.cs
- AsyncOperationManager.cs
- DataGridViewSortCompareEventArgs.cs
- PackageRelationshipSelector.cs
- EqualityComparer.cs
- DrawingImage.cs
- ScriptResourceHandler.cs
- TableRowGroupCollection.cs
- BitmapFrameEncode.cs
- Oid.cs
- DbProviderFactory.cs
- LingerOption.cs
- QueryExpr.cs
- XmlWriterSettings.cs
- CheckableControlBaseAdapter.cs
- EventBindingService.cs
- ScriptRef.cs
- ContentDefinition.cs
- ThemeDirectoryCompiler.cs
- WebPartsSection.cs
- RandomNumberGenerator.cs
- BuiltInPermissionSets.cs
- ServiceDeploymentInfo.cs
- BaseCodePageEncoding.cs
- SqlDataSourceQueryEditor.cs
- SmiTypedGetterSetter.cs
- PersonalizationState.cs
- KeyValuePair.cs
- VectorAnimationUsingKeyFrames.cs
- CultureTableRecord.cs
- NumberAction.cs
- AnimationClock.cs
- SafeLocalMemHandle.cs
- WebConfigurationManager.cs
- TypeNameConverter.cs
- LayoutTableCell.cs
- ClientScriptManager.cs
- SpnegoTokenAuthenticator.cs
- AutomationPattern.cs
- Pens.cs
- DetailsViewInsertEventArgs.cs
- AlternateViewCollection.cs
- ResXResourceWriter.cs
- WindowsFormsLinkLabel.cs
- MarkerProperties.cs
- AvTraceDetails.cs
- WebPartDescriptionCollection.cs
- GridViewRowPresenterBase.cs
- DebuggerAttributes.cs
- WebPartHelpVerb.cs
- SharedConnectionWorkflowTransactionService.cs
- xamlnodes.cs
- Model3DCollection.cs
- SizeFConverter.cs
- DependencyPropertyValueSerializer.cs
- BlurEffect.cs
- RowParagraph.cs
- TemplateBindingExtension.cs
- MobileCategoryAttribute.cs
- TakeQueryOptionExpression.cs
- Knowncolors.cs
- WebUtil.cs
- DeclarativeCatalogPart.cs
- SelectedGridItemChangedEvent.cs
- CompoundFileStreamReference.cs
- EditorZoneBase.cs
- EditorPartChrome.cs
- FamilyTypeface.cs
- TCPClient.cs
- OleDbRowUpdatingEvent.cs
- _FixedSizeReader.cs
- OSFeature.cs
- WindowsImpersonationContext.cs
- SourceChangedEventArgs.cs
- Accessible.cs
- SqlNodeTypeOperators.cs
- AttachedPropertyBrowsableAttribute.cs
- DocumentPageTextView.cs
- SvcMapFileSerializer.cs
- ResourceDescriptionAttribute.cs
- DefaultTextStoreTextComposition.cs
- HttpRequestBase.cs
- ExceptionUtil.cs
- BitmapEffectInputData.cs
- ObjectQueryExecutionPlan.cs
- ChangeProcessor.cs
- _NtlmClient.cs
- DefaultValueConverter.cs
- ConstraintStruct.cs
- MultiTouchSystemGestureLogic.cs
- RectangleGeometry.cs
- FloatMinMaxAggregationOperator.cs
- DataTemplateSelector.cs
- FileClassifier.cs