Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeDeclarationCollection.cs / 1305376 / CodeTypeDeclarationCollection.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 CodeTypeDeclarationCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeTypeDeclarationCollection() { } ////// Initializes a new instance of ///. /// /// public CodeTypeDeclarationCollection(CodeTypeDeclarationCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeTypeDeclarationCollection(CodeTypeDeclaration[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeTypeDeclaration this[int index] { get { return ((CodeTypeDeclaration)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeTypeDeclaration value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeTypeDeclaration[] 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(CodeTypeDeclarationCollection 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(CodeTypeDeclaration value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeTypeDeclaration[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeTypeDeclaration value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeTypeDeclaration value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeTypeDeclaration value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ------------------------------------------------------------------------------ //Removes a specific ///from the /// . // // // ----------------------------------------------------------------------------- // 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 CodeTypeDeclarationCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeTypeDeclarationCollection() { } ////// Initializes a new instance of ///. /// /// public CodeTypeDeclarationCollection(CodeTypeDeclarationCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeTypeDeclarationCollection(CodeTypeDeclaration[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeTypeDeclaration this[int index] { get { return ((CodeTypeDeclaration)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeTypeDeclaration value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeTypeDeclaration[] 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(CodeTypeDeclarationCollection 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(CodeTypeDeclaration value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeTypeDeclaration[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeTypeDeclaration value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeTypeDeclaration value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeTypeDeclaration 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
- PipelineModuleStepContainer.cs
- TrackingParameters.cs
- XmlSchemaSimpleType.cs
- ValueUnavailableException.cs
- DBSchemaTable.cs
- ByteAnimationUsingKeyFrames.cs
- Menu.cs
- RankException.cs
- XmlDataLoader.cs
- ScriptServiceAttribute.cs
- ListItemConverter.cs
- CodeRemoveEventStatement.cs
- WebPartAuthorizationEventArgs.cs
- ThreadInterruptedException.cs
- PolygonHotSpot.cs
- Asn1IntegerConverter.cs
- SQLInt64.cs
- followingquery.cs
- CommandConverter.cs
- SqlUserDefinedTypeAttribute.cs
- WindowsBrush.cs
- Material.cs
- HttpListenerResponse.cs
- CalendarTable.cs
- GifBitmapEncoder.cs
- BamlResourceDeserializer.cs
- TextDecoration.cs
- DataViewManagerListItemTypeDescriptor.cs
- ReadContentAsBinaryHelper.cs
- DesignerOptionService.cs
- ProfileWorkflowElement.cs
- ForceCopyBuildProvider.cs
- CodeAttributeDeclaration.cs
- SmiXetterAccessMap.cs
- DependencyPropertyKind.cs
- ViewStateModeByIdAttribute.cs
- FormsAuthenticationUser.cs
- DeclarativeConditionsCollection.cs
- OutputCacheModule.cs
- MatrixStack.cs
- SafeHGlobalHandleCritical.cs
- MsmqIntegrationSecurityElement.cs
- MessageQueuePermissionEntry.cs
- DrawingContext.cs
- PaintEvent.cs
- SqlCommandBuilder.cs
- Rect3DConverter.cs
- DesignOnlyAttribute.cs
- RuntimeConfigurationRecord.cs
- AnonymousIdentificationSection.cs
- HttpFileCollection.cs
- ReadOnlyCollection.cs
- SineEase.cs
- CompatibleIComparer.cs
- WorkflowServiceNamespace.cs
- TimelineGroup.cs
- ListViewEditEventArgs.cs
- AudioFormatConverter.cs
- ReachFixedPageSerializer.cs
- UpdateException.cs
- HttpConfigurationSystem.cs
- FloatMinMaxAggregationOperator.cs
- DetailsViewPagerRow.cs
- TransformerInfo.cs
- OptimizedTemplateContentHelper.cs
- EntityContainer.cs
- XmlImplementation.cs
- JulianCalendar.cs
- FileDataSourceCache.cs
- FactoryRecord.cs
- WorkflowDefinitionDispenser.cs
- CardSpaceException.cs
- BinaryParser.cs
- ClientSection.cs
- AnnotationAdorner.cs
- DbMetaDataColumnNames.cs
- CrossSiteScriptingValidation.cs
- TaskFormBase.cs
- Trigger.cs
- ConstructorExpr.cs
- ComboBox.cs
- LoginName.cs
- CompilerInfo.cs
- MarshalByValueComponent.cs
- OleDbError.cs
- WebColorConverter.cs
- HScrollProperties.cs
- TextSimpleMarkerProperties.cs
- HostingEnvironment.cs
- ModulesEntry.cs
- XsdCachingReader.cs
- RequestCachePolicyConverter.cs
- Floater.cs
- HttpResponseInternalWrapper.cs
- TextBoxLine.cs
- _AutoWebProxyScriptWrapper.cs
- PathData.cs
- SimpleTextLine.cs
- StaticResourceExtension.cs
- AttachedPropertiesService.cs