Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeStatementCollection.cs / 1305376 / CodeStatementCollection.cs
// ------------------------------------------------------------------------------ //// // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeStatementCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeStatementCollection() { } ////// Initializes a new instance of ///. /// /// public CodeStatementCollection(CodeStatementCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeStatementCollection(CodeStatement[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeStatement this[int index] { get { return ((CodeStatement)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeStatement value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public int Add(CodeExpression value) { return Add(new CodeExpressionStatement(value)); } ///[To be supplied.] ////// public void AddRange(CodeStatement[] value) { if (value == null) { throw new ArgumentNullException("value"); } for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) { this.Add(value[i]); } } ///Copies the elements of an array to the end of the ///. /// public void AddRange(CodeStatementCollection value) { if (value == null) { throw new ArgumentNullException("value"); } int currentCount = value.Count; for (int i = 0; i < currentCount; i = ((i) + (1))) { this.Add(value[i]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CodeStatement value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeStatement[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeStatement value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeStatement value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeStatement value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ZipIOCentralDirectoryDigitalSignature.cs
- _FixedSizeReader.cs
- JpegBitmapEncoder.cs
- StreamResourceInfo.cs
- DialogResultConverter.cs
- TreeNodeStyleCollection.cs
- SafeHandles.cs
- ProviderConnectionPoint.cs
- ObjectQueryProvider.cs
- PermissionListSet.cs
- SerializableAttribute.cs
- DLinqColumnProvider.cs
- VBIdentifierNameEditor.cs
- Base64Encoder.cs
- ProviderIncompatibleException.cs
- XmlWrappingReader.cs
- HttpListenerTimeoutManager.cs
- ParseElementCollection.cs
- EncoderNLS.cs
- BeginStoryboard.cs
- DataTableMappingCollection.cs
- Exceptions.cs
- DataServiceExpressionVisitor.cs
- ConfigXmlText.cs
- SubqueryRules.cs
- BigInt.cs
- DesigntimeLicenseContext.cs
- SystemIcmpV4Statistics.cs
- DataGridViewButtonCell.cs
- XmlElement.cs
- TextContainerHelper.cs
- TimeEnumHelper.cs
- UserValidatedEventArgs.cs
- WorkflowDefinitionDispenser.cs
- ColorTranslator.cs
- FontStretchConverter.cs
- LassoHelper.cs
- RuleRefElement.cs
- NativeMethods.cs
- UnsafeNativeMethods.cs
- xmlformatgeneratorstatics.cs
- RegistryKey.cs
- ElementMarkupObject.cs
- DataGridSortingEventArgs.cs
- GlyphElement.cs
- Freezable.cs
- XPathCompileException.cs
- WindowsToolbarAsMenu.cs
- ToolStripSplitButton.cs
- WorkflowInstanceQuery.cs
- QueueProcessor.cs
- ShapingWorkspace.cs
- rsa.cs
- RowSpanVector.cs
- CrossAppDomainChannel.cs
- TypeToken.cs
- CssStyleCollection.cs
- TeredoHelper.cs
- DynamicUpdateCommand.cs
- TypeLoadException.cs
- DrawTreeNodeEventArgs.cs
- SessionStateSection.cs
- DataSourceXmlAttributeAttribute.cs
- ImportCatalogPart.cs
- Stream.cs
- Visual3D.cs
- HtmlTableRow.cs
- CompositeFontParser.cs
- ExceptionUtility.cs
- DeviceContexts.cs
- __Filters.cs
- SystemUnicastIPAddressInformation.cs
- SourceFileBuildProvider.cs
- CodeExpressionCollection.cs
- TemplateBuilder.cs
- WebConfigurationFileMap.cs
- TextTabProperties.cs
- autovalidator.cs
- thaishape.cs
- DecimalConstantAttribute.cs
- DecimalStorage.cs
- TrackingServices.cs
- dataobject.cs
- NativeCppClassAttribute.cs
- CodeRegionDirective.cs
- FormsAuthenticationModule.cs
- PairComparer.cs
- FormViewDeletedEventArgs.cs
- ReceiveContext.cs
- ResponseBodyWriter.cs
- XmlDownloadManager.cs
- CodeTypeDelegate.cs
- OdbcConnectionPoolProviderInfo.cs
- WebPartCancelEventArgs.cs
- WebPartTransformerCollection.cs
- InheritedPropertyDescriptor.cs
- SQLInt32.cs
- ScrollableControl.cs
- PropertyStore.cs
- BrowserDefinition.cs