Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeStatementCollection.cs / 1 / CodeStatementCollection.cs
// ------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ////// [ 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); } } }Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- VersionedStreamOwner.cs
- ClientUtils.cs
- XmlSerializerSection.cs
- ClientViaElement.cs
- FormParameter.cs
- DataGridAddNewRow.cs
- IntegerFacetDescriptionElement.cs
- OrderedDictionary.cs
- BaseCodeDomTreeGenerator.cs
- ListControlConvertEventArgs.cs
- SafeSecurityHelper.cs
- ValidationSummary.cs
- Thread.cs
- ResourcePool.cs
- ServiceConfigurationTraceRecord.cs
- AutomationIdentifier.cs
- LocatorBase.cs
- Debug.cs
- RemotingService.cs
- CodeAttributeDeclaration.cs
- ObjectDataSource.cs
- WorkItem.cs
- EntityTransaction.cs
- Sql8ConformanceChecker.cs
- TransactionManager.cs
- IpcPort.cs
- XmlDesignerDataSourceView.cs
- InstalledFontCollection.cs
- CredentialCache.cs
- StringAnimationBase.cs
- ListItemsPage.cs
- InsufficientMemoryException.cs
- DataControlImageButton.cs
- SymbolMethod.cs
- DbTypeMap.cs
- CallSite.cs
- BuildDependencySet.cs
- ReverseQueryOperator.cs
- securitycriticaldataClass.cs
- BindingContext.cs
- SimpleHandlerBuildProvider.cs
- ValidatingReaderNodeData.cs
- ClientType.cs
- SchemaTableOptionalColumn.cs
- ColumnBinding.cs
- DbParameterHelper.cs
- NumericExpr.cs
- ReceiveSecurityHeaderEntry.cs
- ValidatedMobileControlConverter.cs
- StretchValidation.cs
- HashMembershipCondition.cs
- HandlerWithFactory.cs
- QilStrConcatenator.cs
- ExternalFile.cs
- DataGridRelationshipRow.cs
- TypeSystem.cs
- SegmentTree.cs
- VersionUtil.cs
- HeaderCollection.cs
- SweepDirectionValidation.cs
- ResourceCategoryAttribute.cs
- CodeTypeReferenceCollection.cs
- DocumentScope.cs
- TypeInitializationException.cs
- GridViewRow.cs
- SqlError.cs
- HelpInfo.cs
- __Filters.cs
- SafeMILHandle.cs
- PermissionSet.cs
- SessionSwitchEventArgs.cs
- HttpListenerPrefixCollection.cs
- BitmapEffectDrawingContextState.cs
- Events.cs
- PermissionSetEnumerator.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- HashMembershipCondition.cs
- ResolvePPIDRequest.cs
- EntityDataSourceWrapper.cs
- CornerRadius.cs
- DeclarativeCatalogPart.cs
- DefaultMemberAttribute.cs
- RelatedView.cs
- Context.cs
- Rotation3DAnimation.cs
- cookieexception.cs
- SmiSettersStream.cs
- XmlChoiceIdentifierAttribute.cs
- WindowsGraphics2.cs
- TreeView.cs
- HMACSHA1.cs
- ApplicationSecurityManager.cs
- RowParagraph.cs
- TypedReference.cs
- LicFileLicenseProvider.cs
- CodeParameterDeclarationExpression.cs
- PrinterResolution.cs
- EndpointConfigContainer.cs
- SocketCache.cs
- PersonalizationStateInfo.cs