Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- ObservableDictionary.cs
- BinaryObjectReader.cs
- DeviceContext2.cs
- CodeFieldReferenceExpression.cs
- SelectionWordBreaker.cs
- ObjectTag.cs
- RequestCacheValidator.cs
- Control.cs
- DocumentEventArgs.cs
- arabicshape.cs
- GifBitmapEncoder.cs
- ValueType.cs
- TableRowCollection.cs
- SynchronousReceiveElement.cs
- GridViewUpdateEventArgs.cs
- XmlFormatExtensionPrefixAttribute.cs
- WorkflowInspectionServices.cs
- FrameDimension.cs
- RulePatternOps.cs
- EditorPartChrome.cs
- ControlValuePropertyAttribute.cs
- Error.cs
- EntityClassGenerator.cs
- KeyedCollection.cs
- WebBrowser.cs
- GraphicsContext.cs
- ResizingMessageFilter.cs
- SQLGuidStorage.cs
- HttpApplication.cs
- ServicePointManagerElement.cs
- BrowserCapabilitiesCompiler.cs
- TiffBitmapEncoder.cs
- ConnectorSelectionGlyph.cs
- SqlFunctions.cs
- RootBuilder.cs
- Misc.cs
- MessageBox.cs
- LogicalExpressionEditor.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- WarningException.cs
- UnrecognizedPolicyAssertionElement.cs
- ElapsedEventArgs.cs
- CommunicationObjectManager.cs
- StructuralComparisons.cs
- EnumConverter.cs
- SqlCacheDependencySection.cs
- EntityDataSourceViewSchema.cs
- HitTestParameters3D.cs
- DecimalAnimationUsingKeyFrames.cs
- HtmlEmptyTagControlBuilder.cs
- DataSourceProvider.cs
- StorageBasedPackageProperties.cs
- GatewayDefinition.cs
- FillRuleValidation.cs
- _Rfc2616CacheValidators.cs
- FilteredXmlReader.cs
- Collection.cs
- RelAssertionDirectKeyIdentifierClause.cs
- WindowsGraphicsCacheManager.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- CompiledELinqQueryState.cs
- StaticSiteMapProvider.cs
- BitStream.cs
- CLSCompliantAttribute.cs
- QilInvokeLateBound.cs
- SerializationSectionGroup.cs
- GlyphInfoList.cs
- Tablet.cs
- BadImageFormatException.cs
- QilExpression.cs
- StaticSiteMapProvider.cs
- XPathEmptyIterator.cs
- FacetValueContainer.cs
- Attributes.cs
- BaseDataList.cs
- MetadataImporterQuotas.cs
- Propagator.JoinPropagator.SubstitutingCloneVisitor.cs
- NameNode.cs
- ElementAction.cs
- SplineKeyFrames.cs
- CounterSampleCalculator.cs
- FileSecurity.cs
- FixedPageProcessor.cs
- HiddenField.cs
- SoapFormatterSinks.cs
- PeerContact.cs
- Group.cs
- WindowAutomationPeer.cs
- SoapEnumAttribute.cs
- OledbConnectionStringbuilder.cs
- SchemaMerger.cs
- SchemaTypeEmitter.cs
- SecurityState.cs
- DecoderNLS.cs
- SystemColorTracker.cs
- EncoderParameter.cs
- FrugalMap.cs
- DbMetaDataFactory.cs
- HttpModuleCollection.cs
- WorkflowViewElement.cs