Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeAttributeDeclarationCollection.cs / 1305376 / CodeAttributeDeclarationCollection.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 CodeAttributeDeclarationCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeAttributeDeclarationCollection() { } ////// Initializes a new instance of ///. /// /// public CodeAttributeDeclarationCollection(CodeAttributeDeclarationCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeAttributeDeclarationCollection(CodeAttributeDeclaration[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeAttributeDeclaration this[int index] { get { return ((CodeAttributeDeclaration)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeAttributeDeclaration value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeAttributeDeclaration[] 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(CodeAttributeDeclarationCollection 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(CodeAttributeDeclaration value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeAttributeDeclaration[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeAttributeDeclaration value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeAttributeDeclaration value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeAttributeDeclaration 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 CodeAttributeDeclarationCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeAttributeDeclarationCollection() { } ////// Initializes a new instance of ///. /// /// public CodeAttributeDeclarationCollection(CodeAttributeDeclarationCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeAttributeDeclarationCollection(CodeAttributeDeclaration[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeAttributeDeclaration this[int index] { get { return ((CodeAttributeDeclaration)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeAttributeDeclaration value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeAttributeDeclaration[] 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(CodeAttributeDeclarationCollection 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(CodeAttributeDeclaration value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeAttributeDeclaration[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeAttributeDeclaration value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeAttributeDeclaration value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeAttributeDeclaration 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
- RadioButton.cs
- DataControlPagerLinkButton.cs
- PrinterResolution.cs
- SchemaTypeEmitter.cs
- JavaScriptString.cs
- HotSpot.cs
- PrintPageEvent.cs
- RijndaelManagedTransform.cs
- translator.cs
- CryptoProvider.cs
- ImageCodecInfoPrivate.cs
- DesignerView.Commands.cs
- DBNull.cs
- EntityCommandDefinition.cs
- ListenUriMode.cs
- InputScope.cs
- PolyBezierSegment.cs
- EventQueueState.cs
- DocumentApplicationJournalEntry.cs
- sortedlist.cs
- RouteParametersHelper.cs
- SmtpTransport.cs
- RowVisual.cs
- DocumentPage.cs
- Timeline.cs
- PathFigure.cs
- UpdatePanelTrigger.cs
- AppLevelCompilationSectionCache.cs
- SystemException.cs
- FormViewActionList.cs
- DataStorage.cs
- ComEventsHelper.cs
- ProtectedConfigurationSection.cs
- HijriCalendar.cs
- Table.cs
- ClientScriptItemCollection.cs
- HitTestWithGeometryDrawingContextWalker.cs
- ResourceType.cs
- RelatedCurrencyManager.cs
- PermissionRequestEvidence.cs
- XmlTextReaderImpl.cs
- TrustManager.cs
- RadioButtonBaseAdapter.cs
- RealProxy.cs
- NonVisualControlAttribute.cs
- DesignerActionGlyph.cs
- StrongNameIdentityPermission.cs
- BitmapVisualManager.cs
- DataKey.cs
- PermissionToken.cs
- GridViewColumnHeaderAutomationPeer.cs
- ParagraphResult.cs
- SqlBulkCopyColumnMapping.cs
- LineGeometry.cs
- PageAsyncTaskManager.cs
- EmptyImpersonationContext.cs
- AnimatedTypeHelpers.cs
- BindingNavigatorDesigner.cs
- XmlElementAttributes.cs
- GeneralTransform3D.cs
- SmiContext.cs
- ProfileSettings.cs
- SafeNativeMethods.cs
- FileDialog.cs
- ErrorsHelper.cs
- NetDataContractSerializer.cs
- DataColumnMappingCollection.cs
- ReferenceSchema.cs
- EdmType.cs
- ModuleBuilderData.cs
- ListParaClient.cs
- HttpCachePolicyElement.cs
- SymbolDocumentInfo.cs
- OpacityConverter.cs
- CursorConverter.cs
- IgnoreSectionHandler.cs
- Polygon.cs
- LayoutTableCell.cs
- XmlSchemaSimpleTypeRestriction.cs
- DiscoveryClientProtocol.cs
- PlacementWorkspace.cs
- WebProxyScriptElement.cs
- StringReader.cs
- XmlHierarchyData.cs
- NonVisualControlAttribute.cs
- TypedTableGenerator.cs
- StringUtil.cs
- OdbcEnvironmentHandle.cs
- XmlReflectionMember.cs
- TreeViewBindingsEditorForm.cs
- EventLogEntryCollection.cs
- ProcessModuleCollection.cs
- PathFigureCollection.cs
- Storyboard.cs
- ValidationHelper.cs
- WizardStepBase.cs
- DataGridViewCellParsingEventArgs.cs
- DesignerTextBoxAdapter.cs
- WebExceptionStatus.cs
- XsltConvert.cs