Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / CodeDOM / CodeArrayCreateExpression.cs / 1 / CodeArrayCreateExpression.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 CodeArrayCreateExpression : CodeExpression { private CodeTypeReference createType; private CodeExpressionCollection initializers = new CodeExpressionCollection(); private CodeExpression sizeExpression; private int size = 0; ///Represents /// an expression that creates an array. ////// public CodeArrayCreateExpression() { } ////// Initializes a new instance of ///. /// /// public CodeArrayCreateExpression(CodeTypeReference createType, params CodeExpression[] initializers) { this.createType = createType; this.initializers.AddRange(initializers); } ////// Initializes a new instance of ///with the specified /// array type and initializers. /// /// public CodeArrayCreateExpression(string createType, params CodeExpression[] initializers) { this.createType = new CodeTypeReference(createType); this.initializers.AddRange(initializers); } ///[To be supplied.] ////// public CodeArrayCreateExpression(Type createType, params CodeExpression[] initializers) { this.createType = new CodeTypeReference(createType); this.initializers.AddRange(initializers); } ///[To be supplied.] ////// public CodeArrayCreateExpression(CodeTypeReference createType, int size) { this.createType = createType; this.size = size; } ////// Initializes a new instance of ///. with the specified array /// type and size. /// /// public CodeArrayCreateExpression(string createType, int size) { this.createType = new CodeTypeReference(createType); this.size = size; } ///[To be supplied.] ////// public CodeArrayCreateExpression(Type createType, int size) { this.createType = new CodeTypeReference(createType); this.size = size; } ///[To be supplied.] ////// public CodeArrayCreateExpression(CodeTypeReference createType, CodeExpression size) { this.createType = createType; this.sizeExpression = size; } ////// Initializes a new instance of ///. with the specified array /// type and size. /// /// public CodeArrayCreateExpression(string createType, CodeExpression size) { this.createType = new CodeTypeReference(createType); this.sizeExpression = size; } ///[To be supplied.] ////// public CodeArrayCreateExpression(Type createType, CodeExpression size) { this.createType = new CodeTypeReference(createType); this.sizeExpression = size; } ///[To be supplied.] ////// public CodeTypeReference CreateType { get { if (createType == null) { createType = new CodeTypeReference(""); } return createType; } set { createType = value; } } ////// Gets or sets /// the type of the array to create. /// ////// public CodeExpressionCollection Initializers { get { return initializers; } } ////// Gets or sets /// the initializers to initialize the array with. /// ////// public int Size { get { return size; } set { size = value; } } ////// Gets or sets /// the size of the array. /// ////// public CodeExpression SizeExpression { get { return sizeExpression; } set { sizeExpression = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets or sets the size of the array. ///// 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 CodeArrayCreateExpression : CodeExpression { private CodeTypeReference createType; private CodeExpressionCollection initializers = new CodeExpressionCollection(); private CodeExpression sizeExpression; private int size = 0; ///Represents /// an expression that creates an array. ////// public CodeArrayCreateExpression() { } ////// Initializes a new instance of ///. /// /// public CodeArrayCreateExpression(CodeTypeReference createType, params CodeExpression[] initializers) { this.createType = createType; this.initializers.AddRange(initializers); } ////// Initializes a new instance of ///with the specified /// array type and initializers. /// /// public CodeArrayCreateExpression(string createType, params CodeExpression[] initializers) { this.createType = new CodeTypeReference(createType); this.initializers.AddRange(initializers); } ///[To be supplied.] ////// public CodeArrayCreateExpression(Type createType, params CodeExpression[] initializers) { this.createType = new CodeTypeReference(createType); this.initializers.AddRange(initializers); } ///[To be supplied.] ////// public CodeArrayCreateExpression(CodeTypeReference createType, int size) { this.createType = createType; this.size = size; } ////// Initializes a new instance of ///. with the specified array /// type and size. /// /// public CodeArrayCreateExpression(string createType, int size) { this.createType = new CodeTypeReference(createType); this.size = size; } ///[To be supplied.] ////// public CodeArrayCreateExpression(Type createType, int size) { this.createType = new CodeTypeReference(createType); this.size = size; } ///[To be supplied.] ////// public CodeArrayCreateExpression(CodeTypeReference createType, CodeExpression size) { this.createType = createType; this.sizeExpression = size; } ////// Initializes a new instance of ///. with the specified array /// type and size. /// /// public CodeArrayCreateExpression(string createType, CodeExpression size) { this.createType = new CodeTypeReference(createType); this.sizeExpression = size; } ///[To be supplied.] ////// public CodeArrayCreateExpression(Type createType, CodeExpression size) { this.createType = new CodeTypeReference(createType); this.sizeExpression = size; } ///[To be supplied.] ////// public CodeTypeReference CreateType { get { if (createType == null) { createType = new CodeTypeReference(""); } return createType; } set { createType = value; } } ////// Gets or sets /// the type of the array to create. /// ////// public CodeExpressionCollection Initializers { get { return initializers; } } ////// Gets or sets /// the initializers to initialize the array with. /// ////// public int Size { get { return size; } set { size = value; } } ////// Gets or sets /// the size of the array. /// ////// public CodeExpression SizeExpression { get { return sizeExpression; } set { sizeExpression = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets or sets the size of the array. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PolicyException.cs
- XmlAttributes.cs
- ObjectManager.cs
- Translator.cs
- WindowsClaimSet.cs
- CustomCredentialPolicy.cs
- KnownIds.cs
- SynchronizationContext.cs
- TimeZone.cs
- Helper.cs
- HwndTarget.cs
- XmlQualifiedNameTest.cs
- ExportOptions.cs
- PseudoWebRequest.cs
- DirectoryObjectSecurity.cs
- AuthenticationModuleElementCollection.cs
- FunctionDescription.cs
- MappedMetaModel.cs
- SplineKeyFrames.cs
- MessageDesigner.cs
- documentsequencetextcontainer.cs
- ListBox.cs
- SafePointer.cs
- StorageFunctionMapping.cs
- ShortcutKeysEditor.cs
- FlowLayoutPanelDesigner.cs
- XmlIncludeAttribute.cs
- SmtpReplyReaderFactory.cs
- ConfigXmlCDataSection.cs
- SplashScreen.cs
- DivideByZeroException.cs
- ProfileServiceManager.cs
- PerformanceCounterPermissionAttribute.cs
- Privilege.cs
- SiteMapProvider.cs
- RadioButtonRenderer.cs
- WSTrustDec2005.cs
- PropertyGeneratedEventArgs.cs
- DbUpdateCommandTree.cs
- dataprotectionpermissionattribute.cs
- AmbientValueAttribute.cs
- PkcsUtils.cs
- WSHttpBinding.cs
- MediaPlayerState.cs
- DataGridViewCellCancelEventArgs.cs
- XmlImplementation.cs
- LookupBindingPropertiesAttribute.cs
- HttpContextBase.cs
- WebPartConnectionsEventArgs.cs
- PrimitiveRenderer.cs
- AssemblyAssociatedContentFileAttribute.cs
- FillErrorEventArgs.cs
- TabOrder.cs
- processwaithandle.cs
- SoapAttributes.cs
- RoutedEventArgs.cs
- ResourcesGenerator.cs
- ErrorWrapper.cs
- Type.cs
- Content.cs
- UxThemeWrapper.cs
- LoadWorkflowByInstanceKeyCommand.cs
- DataGridRelationshipRow.cs
- HtmlElementErrorEventArgs.cs
- CompareValidator.cs
- ValueExpressions.cs
- ContentPropertyAttribute.cs
- OperandQuery.cs
- RequestNavigateEventArgs.cs
- Cell.cs
- DecimalSumAggregationOperator.cs
- HierarchicalDataSourceConverter.cs
- RegexCompilationInfo.cs
- UnsafeNativeMethods.cs
- SqlBuffer.cs
- FormClosingEvent.cs
- WebPartConnection.cs
- XmlSchemaSimpleContentExtension.cs
- HttpStreamFormatter.cs
- ImageDrawing.cs
- InputElement.cs
- RawUIStateInputReport.cs
- UserInitiatedNavigationPermission.cs
- CrossAppDomainChannel.cs
- MouseBinding.cs
- XmlDesigner.cs
- _FtpControlStream.cs
- ReachPrintTicketSerializer.cs
- CodeDomConfigurationHandler.cs
- CalculatedColumn.cs
- FilterQuery.cs
- SqlParameter.cs
- Task.cs
- InputMethodStateTypeInfo.cs
- HostProtectionException.cs
- SessionEndingCancelEventArgs.cs
- ThousandthOfEmRealDoubles.cs
- LayoutEvent.cs
- ColumnWidthChangedEvent.cs
- Debug.cs