Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeAttributeArgumentCollection.cs / 1305376 / CodeAttributeArgumentCollection.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 CodeAttributeArgumentCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeAttributeArgumentCollection() { } ////// Initializes a new instance of ///. /// /// public CodeAttributeArgumentCollection(CodeAttributeArgumentCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeAttributeArgumentCollection(CodeAttributeArgument[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeAttributeArgument this[int index] { get { return ((CodeAttributeArgument)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeAttributeArgument value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeAttributeArgument[] 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(CodeAttributeArgumentCollection 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(CodeAttributeArgument value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeAttributeArgument[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeAttributeArgument value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeAttributeArgument value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeAttributeArgument 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 CodeAttributeArgumentCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeAttributeArgumentCollection() { } ////// Initializes a new instance of ///. /// /// public CodeAttributeArgumentCollection(CodeAttributeArgumentCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeAttributeArgumentCollection(CodeAttributeArgument[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeAttributeArgument this[int index] { get { return ((CodeAttributeArgument)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeAttributeArgument value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeAttributeArgument[] 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(CodeAttributeArgumentCollection 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(CodeAttributeArgument value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeAttributeArgument[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeAttributeArgument value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeAttributeArgument value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeAttributeArgument 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
- ObjectCloneHelper.cs
- CancelEventArgs.cs
- RegisterInfo.cs
- PrimitiveXmlSerializers.cs
- BinaryKeyIdentifierClause.cs
- objectquery_tresulttype.cs
- ButtonRenderer.cs
- RtfToXamlLexer.cs
- TextTrailingCharacterEllipsis.cs
- XmlSchemaElement.cs
- loginstatus.cs
- formatstringdialog.cs
- DataGridBoolColumn.cs
- RenderDataDrawingContext.cs
- ExplicitDiscriminatorMap.cs
- ProcessModuleDesigner.cs
- x509utils.cs
- XmlSchemaValidationException.cs
- _DisconnectOverlappedAsyncResult.cs
- PageAdapter.cs
- AnnotationResource.cs
- ListBox.cs
- CommandSet.cs
- Logging.cs
- XmlException.cs
- InstanceDataCollectionCollection.cs
- AccessText.cs
- ExceptionHelpers.cs
- EmptyEnumerator.cs
- AllMembershipCondition.cs
- ProcessHostConfigUtils.cs
- MailWebEventProvider.cs
- ThreadStartException.cs
- DesigntimeLicenseContext.cs
- ContextStaticAttribute.cs
- RowVisual.cs
- DiscoveryDocument.cs
- CustomAssemblyResolver.cs
- OrderedDictionary.cs
- StateDesigner.CommentLayoutGlyph.cs
- SiteMap.cs
- EdmValidator.cs
- GACMembershipCondition.cs
- DesignerDataTableBase.cs
- XmlSerializer.cs
- MLangCodePageEncoding.cs
- ConstraintCollection.cs
- PeerNameResolver.cs
- OdbcFactory.cs
- HwndSource.cs
- JavaScriptObjectDeserializer.cs
- EntityDataSourceColumn.cs
- EventSourceCreationData.cs
- DataServiceContext.cs
- COMException.cs
- OperationPickerDialog.designer.cs
- CheckBoxBaseAdapter.cs
- LinkLabel.cs
- TextTreeRootNode.cs
- TextPointer.cs
- Emitter.cs
- ICspAsymmetricAlgorithm.cs
- XmlWriterTraceListener.cs
- ControlBindingsCollection.cs
- HtmlControlPersistable.cs
- AggregationMinMaxHelpers.cs
- DataGridViewMethods.cs
- PageContent.cs
- DataGridViewCellParsingEventArgs.cs
- KeyFrames.cs
- _ChunkParse.cs
- BinaryCommonClasses.cs
- SchemaImporter.cs
- TypeGeneratedEventArgs.cs
- RotateTransform.cs
- ImportedNamespaceContextItem.cs
- SqlProviderServices.cs
- XmlUtil.cs
- ValidationHelper.cs
- ContextMenuService.cs
- PropertyDescriptorComparer.cs
- Model3DGroup.cs
- ManipulationCompletedEventArgs.cs
- StyleModeStack.cs
- Schema.cs
- WebColorConverter.cs
- ChannelDispatcher.cs
- CreateDataSourceDialog.cs
- NamedPipeDuplicateContext.cs
- RSAPKCS1KeyExchangeFormatter.cs
- TreeNodeBinding.cs
- BinaryCommonClasses.cs
- ClientProxyGenerator.cs
- CharacterHit.cs
- GlobalProxySelection.cs
- SystemFonts.cs
- WebPartCloseVerb.cs
- Command.cs
- FlowPanelDesigner.cs
- XmlEncodedRawTextWriter.cs