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
- CodeDomSerializerBase.cs
- XmlSerializerVersionAttribute.cs
- CultureInfo.cs
- HttpListenerResponse.cs
- TriggerActionCollection.cs
- CacheDependency.cs
- TemplatedWizardStep.cs
- Renderer.cs
- TreeViewBindingsEditor.cs
- BamlStream.cs
- DockPanel.cs
- ConnectionStringSettings.cs
- ObjectDataSourceStatusEventArgs.cs
- DisplayInformation.cs
- AssemblyNameProxy.cs
- XmlSchemaComplexContentRestriction.cs
- ModuleBuilder.cs
- BitmapData.cs
- PropertyDescriptorCollection.cs
- LogManagementAsyncResult.cs
- XmlUrlEditor.cs
- SqlTrackingService.cs
- PageSettings.cs
- FileRecordSequenceCompletedAsyncResult.cs
- XDeferredAxisSource.cs
- MetadataCache.cs
- MetadataItemCollectionFactory.cs
- TCPListener.cs
- HtmlButton.cs
- ProcessManager.cs
- ListSourceHelper.cs
- SplitterEvent.cs
- PermissionToken.cs
- WorkItem.cs
- DbReferenceCollection.cs
- LogicalTreeHelper.cs
- documentsequencetextview.cs
- SqlServer2KCompatibilityCheck.cs
- XmlParserContext.cs
- AssemblyAttributes.cs
- UriWriter.cs
- HtmlTitle.cs
- TreeNode.cs
- DataGridRelationshipRow.cs
- HttpListener.cs
- WindowsProgressbar.cs
- EtwProvider.cs
- ClientRolePrincipal.cs
- SafeIUnknown.cs
- X509CertificateChain.cs
- AdjustableArrowCap.cs
- CryptoConfig.cs
- BrowserTree.cs
- Scripts.cs
- HostSecurityManager.cs
- ToolStripLocationCancelEventArgs.cs
- StateRuntime.cs
- TableStyle.cs
- CachingHintValidation.cs
- ObjectDataSourceDisposingEventArgs.cs
- Line.cs
- CmsInterop.cs
- CodeSubDirectory.cs
- MembershipUser.cs
- CharUnicodeInfo.cs
- Guid.cs
- BufferBuilder.cs
- QueryStringParameter.cs
- Int32RectConverter.cs
- SchemaNotation.cs
- Rect3DValueSerializer.cs
- MultiByteCodec.cs
- COM2PictureConverter.cs
- ThicknessKeyFrameCollection.cs
- DataGridViewCellStateChangedEventArgs.cs
- RangeBase.cs
- FileDialogCustomPlaces.cs
- Publisher.cs
- TransformPatternIdentifiers.cs
- SystemBrushes.cs
- OptimisticConcurrencyException.cs
- TextParaClient.cs
- ObjectStateFormatter.cs
- WindowsImpersonationContext.cs
- BitmapPalette.cs
- BindingMAnagerBase.cs
- PresentationAppDomainManager.cs
- OraclePermissionAttribute.cs
- FixUpCollection.cs
- XappLauncher.cs
- StickyNoteHelper.cs
- CharEntityEncoderFallback.cs
- GuidelineCollection.cs
- Int32Rect.cs
- TableCellAutomationPeer.cs
- Nullable.cs
- HashUtility.cs
- ELinqQueryState.cs
- ImageClickEventArgs.cs
- EventDescriptor.cs