Code:
/ FX-1434 / FX-1434 / 1.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
- CancelEventArgs.cs
- DataControlFieldCell.cs
- ConversionHelper.cs
- RequiredAttributeAttribute.cs
- IteratorDescriptor.cs
- CustomCategoryAttribute.cs
- AsymmetricSignatureFormatter.cs
- ObjectTag.cs
- WinFormsUtils.cs
- DefaultParameterValueAttribute.cs
- PageAsyncTaskManager.cs
- Simplifier.cs
- EmptyEnumerator.cs
- EventLogPermission.cs
- streamingZipPartStream.cs
- PermissionAttributes.cs
- DataViewListener.cs
- validationstate.cs
- SchemaEntity.cs
- hresults.cs
- SignHashRequest.cs
- ConfigurationManagerHelper.cs
- _ShellExpression.cs
- DataViewManagerListItemTypeDescriptor.cs
- MeasurementDCInfo.cs
- NavigatorOutput.cs
- MTConfigUtil.cs
- NavigatingCancelEventArgs.cs
- HttpApplicationFactory.cs
- StdRegProviderWrapper.cs
- SqlDesignerDataSourceView.cs
- XmlWrappingReader.cs
- PolicyValidator.cs
- TextRunCacheImp.cs
- AssemblySettingAttributes.cs
- CreateRefExpr.cs
- WindowsToolbar.cs
- LogManagementAsyncResult.cs
- ResourceWriter.cs
- Stack.cs
- BuildProvider.cs
- WindowsPrincipal.cs
- ClientScriptManagerWrapper.cs
- MapPathBasedVirtualPathProvider.cs
- AdobeCFFWrapper.cs
- FieldDescriptor.cs
- SecurityRuntime.cs
- ErrorTableItemStyle.cs
- CardSpaceSelector.cs
- SystemColorTracker.cs
- Variable.cs
- SQLBinary.cs
- IPGlobalProperties.cs
- XmlSchemaValidationException.cs
- WebPartConnectionsConfigureVerb.cs
- QilStrConcat.cs
- QilIterator.cs
- WebPartDisplayModeCancelEventArgs.cs
- DmlSqlGenerator.cs
- NonParentingControl.cs
- MtomMessageEncodingElement.cs
- ChtmlTextWriter.cs
- UniformGrid.cs
- TraceUtils.cs
- ReflectionUtil.cs
- FramingFormat.cs
- ReadOnlyDictionary.cs
- AutomationAttributeInfo.cs
- StylusPointPropertyUnit.cs
- ImageAttributes.cs
- Trace.cs
- BufferedGraphicsManager.cs
- ThaiBuddhistCalendar.cs
- WindowsClientCredential.cs
- LinkUtilities.cs
- CryptoApi.cs
- RowUpdatingEventArgs.cs
- EntityDataSourceValidationException.cs
- RtfToXamlLexer.cs
- AuthenticateEventArgs.cs
- WindowsRegion.cs
- DbDataSourceEnumerator.cs
- ToolStripDropTargetManager.cs
- EventRecordWrittenEventArgs.cs
- GenericQueueSurrogate.cs
- MimeMapping.cs
- TypeSystem.cs
- SendSecurityHeaderElementContainer.cs
- Transform.cs
- SqlXmlStorage.cs
- RenderCapability.cs
- ADRole.cs
- XmlRawWriter.cs
- DirectoryObjectSecurity.cs
- BulletChrome.cs
- EventLogEntryCollection.cs
- LinkedList.cs
- CodeSubDirectory.cs
- SchemaEntity.cs
- DetailsViewUpdatedEventArgs.cs