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
- LassoSelectionBehavior.cs
- SafeTimerHandle.cs
- LogPolicy.cs
- ColumnMapProcessor.cs
- Environment.cs
- DataGridColumnCollection.cs
- ArraySegment.cs
- Vector3dCollection.cs
- SystemWebCachingSectionGroup.cs
- XmlSchemaSimpleTypeRestriction.cs
- TypeLibConverter.cs
- FontSourceCollection.cs
- KeyConstraint.cs
- Condition.cs
- UpdateTracker.cs
- SerializationSectionGroup.cs
- EventRecordWrittenEventArgs.cs
- BitmapMetadataEnumerator.cs
- Compiler.cs
- NavigationPropertySingletonExpression.cs
- DoubleAnimation.cs
- InkCanvas.cs
- CharStorage.cs
- CodeNamespace.cs
- HttpConfigurationSystem.cs
- RenderData.cs
- SourceFileBuildProvider.cs
- QilReplaceVisitor.cs
- AccessText.cs
- TreeNodeSelectionProcessor.cs
- PrintingPermission.cs
- Match.cs
- StringDictionaryEditor.cs
- DefaultShape.cs
- DesignerDataSchemaClass.cs
- ImpersonateTokenRef.cs
- NamespaceEmitter.cs
- ReferenceTypeElement.cs
- DataObjectSettingDataEventArgs.cs
- LoginView.cs
- WebBrowserSiteBase.cs
- ContentElement.cs
- oledbconnectionstring.cs
- ProxyBuilder.cs
- WebPartVerbCollection.cs
- IdentityNotMappedException.cs
- ListBoxItemAutomationPeer.cs
- DataContractSerializerOperationGenerator.cs
- UniqueConstraint.cs
- MimeWriter.cs
- SectionInput.cs
- NotImplementedException.cs
- DockPattern.cs
- PermissionSet.cs
- PackageRelationshipCollection.cs
- PasswordRecovery.cs
- Calendar.cs
- FontDialog.cs
- NativeMethodsCLR.cs
- ToolboxBitmapAttribute.cs
- XmlSchemaAnnotated.cs
- AssertSection.cs
- CqlLexer.cs
- PrintDocument.cs
- TableCell.cs
- IdentityManager.cs
- UnsafeNativeMethods.cs
- Constants.cs
- DBSchemaTable.cs
- WpfKnownMember.cs
- SimpleType.cs
- ErrorFormatter.cs
- Convert.cs
- FormsIdentity.cs
- DataSourceControlBuilder.cs
- StopStoryboard.cs
- SmtpAuthenticationManager.cs
- DecoratedNameAttribute.cs
- NameValueCollection.cs
- OdbcRowUpdatingEvent.cs
- ControlAdapter.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- SoapObjectWriter.cs
- CuspData.cs
- Int16KeyFrameCollection.cs
- AttachInfo.cs
- BmpBitmapDecoder.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- ConstantSlot.cs
- UrlPath.cs
- ArglessEventHandlerProxy.cs
- MultiPageTextView.cs
- WebResponse.cs
- ComponentEvent.cs
- RadialGradientBrush.cs
- Transform.cs
- OuterGlowBitmapEffect.cs
- ControlType.cs
- AssemblyCollection.cs
- JpegBitmapDecoder.cs