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
- PartDesigner.cs
- TextContainerChangeEventArgs.cs
- ChannelDemuxer.cs
- Keyboard.cs
- InheritanceAttribute.cs
- ButtonAutomationPeer.cs
- DataGridTablesFactory.cs
- ExtendedProtectionPolicyTypeConverter.cs
- SocketInformation.cs
- Comparer.cs
- ZipIOExtraFieldPaddingElement.cs
- TextChangedEventArgs.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- SerializationInfoEnumerator.cs
- HttpCookieCollection.cs
- WeakReferenceList.cs
- CellCreator.cs
- PageRequestManager.cs
- ControlEvent.cs
- TrustLevel.cs
- ScriptManagerProxy.cs
- recordstatefactory.cs
- ObjectIDGenerator.cs
- ProxyWebPartConnectionCollection.cs
- processwaithandle.cs
- DiscardableAttribute.cs
- CryptoStream.cs
- ArgumentNullException.cs
- WpfSharedBamlSchemaContext.cs
- DuplexChannelBinder.cs
- Transform3D.cs
- EFColumnProvider.cs
- VisualProxy.cs
- CustomCredentialPolicy.cs
- DataGridViewCellEventArgs.cs
- ConsumerConnectionPointCollection.cs
- ScrollItemPattern.cs
- EntityDataSourceReferenceGroup.cs
- IListConverters.cs
- PrimitiveXmlSerializers.cs
- RequiredAttributeAttribute.cs
- ProjectionAnalyzer.cs
- HostedBindingBehavior.cs
- CollectionConverter.cs
- OdbcRowUpdatingEvent.cs
- __Filters.cs
- BaseProcessor.cs
- WorkflowMarkupSerializationManager.cs
- ImportFileRequest.cs
- TemplateEditingVerb.cs
- OletxTransactionManager.cs
- SaveFileDialog.cs
- Action.cs
- RelationshipWrapper.cs
- SourceSwitch.cs
- HttpCookiesSection.cs
- SynchronizingStream.cs
- Canvas.cs
- MenuItemStyleCollectionEditor.cs
- IISUnsafeMethods.cs
- SmtpException.cs
- HttpRequestCacheValidator.cs
- ProjectionPathBuilder.cs
- shaper.cs
- DataContractSerializerOperationBehavior.cs
- WorkflowServiceBuildProvider.cs
- ContainerTracking.cs
- MemberInfoSerializationHolder.cs
- SolidBrush.cs
- ResolvePPIDRequest.cs
- DateBoldEvent.cs
- IndentedWriter.cs
- List.cs
- ToolboxBitmapAttribute.cs
- XmlMessageFormatter.cs
- MethodCallConverter.cs
- RegistryConfigurationProvider.cs
- RawKeyboardInputReport.cs
- Compiler.cs
- Util.cs
- RenderCapability.cs
- Tablet.cs
- EmptyStringExpandableObjectConverter.cs
- DataDesignUtil.cs
- BindingMemberInfo.cs
- Misc.cs
- AnimationClock.cs
- RSAPKCS1SignatureFormatter.cs
- HtmlInputFile.cs
- ClockGroup.cs
- TargetControlTypeAttribute.cs
- DataGridSortingEventArgs.cs
- ObjectTokenCategory.cs
- FlowLayoutPanelDesigner.cs
- FlowLayout.cs
- Deserializer.cs
- Point4D.cs
- DateTimeStorage.cs
- CompModHelpers.cs
- RelOps.cs