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
- FakeModelItemImpl.cs
- AuthenticationException.cs
- DataObjectEventArgs.cs
- UnicastIPAddressInformationCollection.cs
- IMembershipProvider.cs
- WindowsStreamSecurityElement.cs
- ConfigDefinitionUpdates.cs
- MonitoringDescriptionAttribute.cs
- ParallelEnumerable.cs
- ExceptionUtil.cs
- SizeFConverter.cs
- DataRowComparer.cs
- AttachmentCollection.cs
- ResourceExpressionBuilder.cs
- ChannelServices.cs
- MessageAction.cs
- MediaCommands.cs
- ConditionCollection.cs
- WindowsIdentity.cs
- _BasicClient.cs
- DataGridViewTextBoxCell.cs
- CmsInterop.cs
- MappingMetadataHelper.cs
- XmlComment.cs
- Gdiplus.cs
- SelectionItemPattern.cs
- ListDictionary.cs
- WpfKnownType.cs
- SchemaNamespaceManager.cs
- InkCanvasInnerCanvas.cs
- cache.cs
- CheckableControlBaseAdapter.cs
- SQLDoubleStorage.cs
- DecodeHelper.cs
- CommandManager.cs
- CanonicalFormWriter.cs
- SingleConverter.cs
- DelegatedStream.cs
- WindowsToolbarItemAsMenuItem.cs
- CompensationHandlingFilter.cs
- DiagnosticsConfigurationHandler.cs
- PageCopyCount.cs
- Accessors.cs
- SqlGatherProducedAliases.cs
- WebBrowserDesigner.cs
- SqlBooleanizer.cs
- QueryOutputWriter.cs
- URLIdentityPermission.cs
- CngAlgorithm.cs
- XmlNamespaceDeclarationsAttribute.cs
- PropertyChangedEventArgs.cs
- HashCodeCombiner.cs
- ValueProviderWrapper.cs
- AsyncWaitHandle.cs
- SecurityCapabilities.cs
- HostSecurityManager.cs
- CodeIdentifiers.cs
- HorizontalAlignConverter.cs
- DelayLoadType.cs
- PointAnimationBase.cs
- Bitmap.cs
- EnumMember.cs
- NonVisualControlAttribute.cs
- CommandDevice.cs
- SecurityChannelFaultConverter.cs
- TreeNodeConverter.cs
- SystemDropShadowChrome.cs
- MultiView.cs
- objectquery_tresulttype.cs
- AncestorChangedEventArgs.cs
- Tokenizer.cs
- Menu.cs
- RangeValuePatternIdentifiers.cs
- MenuItemStyleCollection.cs
- TransformerInfoCollection.cs
- DrawingContextWalker.cs
- FileNotFoundException.cs
- LinqTreeNodeEvaluator.cs
- DataPagerCommandEventArgs.cs
- AutomationElementIdentifiers.cs
- SoapCodeExporter.cs
- IncrementalReadDecoders.cs
- WindowsNonControl.cs
- StorageConditionPropertyMapping.cs
- FormViewUpdateEventArgs.cs
- ChannelPoolSettingsElement.cs
- StateRuntime.cs
- ContentTextAutomationPeer.cs
- ConfigurationValue.cs
- XmlLanguage.cs
- DataComponentMethodGenerator.cs
- DataServiceContext.cs
- Version.cs
- CheckBoxField.cs
- AutomationPatternInfo.cs
- OleDbConnectionFactory.cs
- TextCollapsingProperties.cs
- RecognitionResult.cs
- SapiRecognizer.cs
- DataGridCommandEventArgs.cs