Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } } }Gets or sets the size of the array. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Property.cs
- sqlinternaltransaction.cs
- CounterSetInstanceCounterDataSet.cs
- AssociationEndMember.cs
- COSERVERINFO.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- TransactionsSectionGroup.cs
- StreamProxy.cs
- bindurihelper.cs
- GuidConverter.cs
- ThreadWorkerController.cs
- JavaScriptObjectDeserializer.cs
- DtdParser.cs
- TypeDescriptionProvider.cs
- KeyboardNavigation.cs
- RelationshipEndCollection.cs
- EmptyReadOnlyDictionaryInternal.cs
- SelectionItemProviderWrapper.cs
- PathSegmentCollection.cs
- NetworkStream.cs
- httpapplicationstate.cs
- ExtensionDataObject.cs
- ShaperBuffers.cs
- Brush.cs
- StatusInfoItem.cs
- LineGeometry.cs
- PersianCalendar.cs
- PackageRelationship.cs
- DataBindingExpressionBuilder.cs
- CellParagraph.cs
- MessageQueueCriteria.cs
- XhtmlBasicPhoneCallAdapter.cs
- FolderBrowserDialog.cs
- ServiceParser.cs
- PKCS1MaskGenerationMethod.cs
- JoinCqlBlock.cs
- UndoEngine.cs
- ObjectSecurity.cs
- TransformConverter.cs
- BlurBitmapEffect.cs
- DnsPermission.cs
- EntityCollectionChangedParams.cs
- DiscoveryExceptionDictionary.cs
- hresults.cs
- HtmlInputRadioButton.cs
- SvcMapFileSerializer.cs
- StringFunctions.cs
- DataGridViewElement.cs
- DocumentOutline.cs
- PageSetupDialog.cs
- RetrieveVirtualItemEventArgs.cs
- InitializerFacet.cs
- ScriptDescriptor.cs
- DataBoundControlHelper.cs
- NonParentingControl.cs
- GenericRootAutomationPeer.cs
- ResourceAssociationType.cs
- StorageConditionPropertyMapping.cs
- CryptoApi.cs
- DataGridViewRowsAddedEventArgs.cs
- EventBuilder.cs
- StructuredTypeInfo.cs
- FixedSOMTableCell.cs
- Compilation.cs
- SimpleWebHandlerParser.cs
- PropertyEmitter.cs
- ZipPackagePart.cs
- WindowsComboBox.cs
- TextRangeEdit.cs
- Nullable.cs
- BoolExpression.cs
- DataSourceHelper.cs
- log.cs
- Underline.cs
- ExpressionPrinter.cs
- ConnectionPoolManager.cs
- BamlReader.cs
- OdbcEnvironment.cs
- DecimalStorage.cs
- ModelVisual3D.cs
- X509SecurityTokenAuthenticator.cs
- ContainerSelectorActiveEvent.cs
- Rotation3DAnimation.cs
- ScriptControlManager.cs
- WinEventWrap.cs
- SecurityElement.cs
- UriExt.cs
- _NTAuthentication.cs
- ActivityLocationReferenceEnvironment.cs
- SqlMethodAttribute.cs
- PasswordPropertyTextAttribute.cs
- Brush.cs
- MDIControlStrip.cs
- __FastResourceComparer.cs
- DataGridColumnCollectionEditor.cs
- basecomparevalidator.cs
- SocketInformation.cs
- CacheEntry.cs
- WebColorConverter.cs
- EmptyStringExpandableObjectConverter.cs