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
- BitSet.cs
- Rect3DValueSerializer.cs
- TypeContext.cs
- ValidationErrorEventArgs.cs
- TypeCacheManager.cs
- ButtonBaseDesigner.cs
- DbProviderFactory.cs
- CodeGenerationManager.cs
- Message.cs
- DataGridDesigner.cs
- NonClientArea.cs
- TextCollapsingProperties.cs
- AppSettingsReader.cs
- PriorityChain.cs
- RadioButtonPopupAdapter.cs
- TypeLibConverter.cs
- RegisteredExpandoAttribute.cs
- ProfileBuildProvider.cs
- RequestQueue.cs
- StringFormat.cs
- TreeViewEvent.cs
- GridViewColumn.cs
- DataGridViewControlCollection.cs
- BrowserDefinition.cs
- AssemblyGen.cs
- NavigationExpr.cs
- ThemeDictionaryExtension.cs
- XmlTextReaderImpl.cs
- NameTable.cs
- PixelFormat.cs
- ObjectResult.cs
- ItemsControl.cs
- DataGridViewDataErrorEventArgs.cs
- ContentPlaceHolder.cs
- CssTextWriter.cs
- OracleCommandBuilder.cs
- oledbconnectionstring.cs
- Property.cs
- CompilerGlobalScopeAttribute.cs
- ScriptReference.cs
- PublisherIdentityPermission.cs
- ContentPosition.cs
- XmlSerializerFactory.cs
- EntityDataSourceWrapper.cs
- Literal.cs
- XmlSequenceWriter.cs
- Flattener.cs
- TextServicesCompartment.cs
- EditorServiceContext.cs
- EncoderFallback.cs
- SerializerWriterEventHandlers.cs
- ContentType.cs
- TrackBar.cs
- TextEndOfParagraph.cs
- WmlPanelAdapter.cs
- TypeListConverter.cs
- NamedPermissionSet.cs
- Hyperlink.cs
- KeyboardDevice.cs
- RegisteredArrayDeclaration.cs
- Pool.cs
- FileVersion.cs
- ResourceAttributes.cs
- WSTrustFeb2005.cs
- FragmentQuery.cs
- CapabilitiesSection.cs
- WebPartZoneDesigner.cs
- mediaclock.cs
- Frame.cs
- ArgIterator.cs
- RichTextBox.cs
- ISAPIRuntime.cs
- DataBoundControl.cs
- UIAgentAsyncEndRequest.cs
- MarginCollapsingState.cs
- ColorComboBox.cs
- Int32KeyFrameCollection.cs
- VirtualPathProvider.cs
- EventTask.cs
- StagingAreaInputItem.cs
- SystemThemeKey.cs
- GridItemCollection.cs
- KnownBoxes.cs
- FormsAuthenticationEventArgs.cs
- MouseGestureConverter.cs
- GenericAuthenticationEventArgs.cs
- AmbientEnvironment.cs
- DiscoveryMessageSequence11.cs
- SectionXmlInfo.cs
- InvokeHandlers.cs
- NetPeerTcpBindingCollectionElement.cs
- _NTAuthentication.cs
- Registry.cs
- OptionalColumn.cs
- RootProjectionNode.cs
- SerializationHelper.cs
- WizardPanelChangingEventArgs.cs
- Translator.cs
- MarginCollapsingState.cs
- DataGridCaption.cs