Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets the type of the variable. /// ///// 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets the type of the variable. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- handlecollector.cs
- SizeChangedEventArgs.cs
- ObjectNotFoundException.cs
- ImageConverter.cs
- SQLInt64Storage.cs
- HtmlElementEventArgs.cs
- CodeConditionStatement.cs
- TextRunTypographyProperties.cs
- TreeBuilderXamlTranslator.cs
- WebPartMenuStyle.cs
- EventRoute.cs
- CompareInfo.cs
- HybridDictionary.cs
- IndexOutOfRangeException.cs
- CompositeControlDesigner.cs
- DynamicEntity.cs
- ItemCollection.cs
- MetadataItemEmitter.cs
- linebase.cs
- RequestSecurityTokenResponse.cs
- PageBuildProvider.cs
- WebDisplayNameAttribute.cs
- AspNetSynchronizationContext.cs
- HTTPRemotingHandler.cs
- BitmapEffectOutputConnector.cs
- ExpressionBuilder.cs
- PagerSettings.cs
- PropertyPanel.cs
- Context.cs
- Domain.cs
- CompoundFileReference.cs
- InfoCardSymmetricAlgorithm.cs
- PerformanceCounterManager.cs
- CodeEventReferenceExpression.cs
- RepeaterItemEventArgs.cs
- TdsParameterSetter.cs
- ResXBuildProvider.cs
- BaseTemplateBuildProvider.cs
- ItemCollection.cs
- ProcessInputEventArgs.cs
- Keyboard.cs
- DesignerValidationSummaryAdapter.cs
- ScrollBar.cs
- Command.cs
- DataContext.cs
- TabControlCancelEvent.cs
- TargetControlTypeAttribute.cs
- AnnotationComponentManager.cs
- ItemsPanelTemplate.cs
- PolyLineSegment.cs
- bindurihelper.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- XmlUrlResolver.cs
- DbgUtil.cs
- FixedPageProcessor.cs
- DbSetClause.cs
- StateMachineHelpers.cs
- CollectionType.cs
- EntityStoreSchemaFilterEntry.cs
- ConvertEvent.cs
- WebBrowserContainer.cs
- XmlSchemaSimpleType.cs
- AssemblyCollection.cs
- WindowsListViewItemStartMenu.cs
- SqlXml.cs
- Int32Rect.cs
- DesignerForm.cs
- MbpInfo.cs
- Brush.cs
- FlowDocument.cs
- DataListItemEventArgs.cs
- ComAdminWrapper.cs
- ZipIOLocalFileBlock.cs
- TraceProvider.cs
- TextHidden.cs
- CssTextWriter.cs
- RegionIterator.cs
- IDictionary.cs
- QuaternionValueSerializer.cs
- SiteOfOriginPart.cs
- OrderToken.cs
- StorageAssociationSetMapping.cs
- BufferBuilder.cs
- RequestCacheValidator.cs
- DesignerActionVerbList.cs
- QueryRewriter.cs
- TextReader.cs
- BrowserDefinition.cs
- XmlSchemaSimpleType.cs
- Effect.cs
- Rotation3D.cs
- ObjectSecurity.cs
- DependencyPropertyDescriptor.cs
- Viewport3DVisual.cs
- MultipartContentParser.cs
- HandlerBase.cs
- Number.cs
- DocumentGridPage.cs
- StyleXamlParser.cs
- GroupBox.cs