Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeVariableDeclarationStatement.cs / 1305376 / CodeVariableDeclarationStatement.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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. /// ///// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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
- PerfCounters.cs
- SystemWebCachingSectionGroup.cs
- XmlSchemaValidator.cs
- PathSegment.cs
- DataMisalignedException.cs
- ConfigurationValue.cs
- PropertyManager.cs
- HandleCollector.cs
- PropertyGridEditorPart.cs
- DelegateTypeInfo.cs
- Lock.cs
- BindingList.cs
- RadioButton.cs
- RemotingException.cs
- IsolatedStorageSecurityState.cs
- activationcontext.cs
- RegexWorker.cs
- MessageSmuggler.cs
- BasicExpandProvider.cs
- JournalEntryStack.cs
- FileStream.cs
- RegexWorker.cs
- XmlAttributeCache.cs
- Tile.cs
- ContextMenu.cs
- ListControl.cs
- CreatingCookieEventArgs.cs
- InheritanceAttribute.cs
- ButtonChrome.cs
- WebBrowserUriTypeConverter.cs
- ISFClipboardData.cs
- BufferedGraphics.cs
- EntityProviderFactory.cs
- XmlHelper.cs
- PlainXmlWriter.cs
- WorkflowServiceHostFactory.cs
- SecurityTokenException.cs
- AppDomainCompilerProxy.cs
- StrokeIntersection.cs
- OdbcErrorCollection.cs
- EncoderFallback.cs
- TreeView.cs
- PropertyInformationCollection.cs
- DesignerLabelAdapter.cs
- SyndicationElementExtension.cs
- InteropBitmapSource.cs
- SafeCryptContextHandle.cs
- HitTestFilterBehavior.cs
- MissingFieldException.cs
- ToolboxItemAttribute.cs
- TextMarkerSource.cs
- ToolStripSplitStackLayout.cs
- FormatConvertedBitmap.cs
- SignatureConfirmations.cs
- ActiveDocumentEvent.cs
- _HeaderInfoTable.cs
- ReadOnlyCollectionBuilder.cs
- PropertyEmitter.cs
- Stacktrace.cs
- FormatSettings.cs
- HttpContext.cs
- BitmapEffectDrawing.cs
- KeyValueInternalCollection.cs
- SymDocumentType.cs
- StringWriter.cs
- BitmapEncoder.cs
- SiteMapPath.cs
- TypeConverters.cs
- ToolStripItemTextRenderEventArgs.cs
- CallbackBehaviorAttribute.cs
- Pair.cs
- DeferredTextReference.cs
- DataRowView.cs
- IntSecurity.cs
- MarshalDirectiveException.cs
- PropertyGridView.cs
- DebugTracing.cs
- IISUnsafeMethods.cs
- ItemType.cs
- Certificate.cs
- UnorderedHashRepartitionStream.cs
- WhitespaceRuleLookup.cs
- AuthenticationModuleElement.cs
- ExtensionSimplifierMarkupObject.cs
- ImageEditor.cs
- SplineQuaternionKeyFrame.cs
- ProbeDuplexCD1AsyncResult.cs
- RenderTargetBitmap.cs
- InternalRelationshipCollection.cs
- TextServicesContext.cs
- InstanceDataCollectionCollection.cs
- Keyboard.cs
- CngUIPolicy.cs
- PasswordDeriveBytes.cs
- PieceNameHelper.cs
- SystemColors.cs
- SchemeSettingElementCollection.cs
- PeerCustomResolverElement.cs
- RadioButtonRenderer.cs
- WebPartHelpVerb.cs