Code:
/ 4.0 / 4.0 / untmp / 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 /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Queue.cs
- ApplicationException.cs
- SiteMapHierarchicalDataSourceView.cs
- CompiledQueryCacheKey.cs
- QuaternionConverter.cs
- BitmapSourceSafeMILHandle.cs
- Reference.cs
- DoubleConverter.cs
- DataGridViewCellConverter.cs
- XsltCompileContext.cs
- ACE.cs
- MethodBuilder.cs
- SecUtil.cs
- AspNetSynchronizationContext.cs
- GZipStream.cs
- PageCodeDomTreeGenerator.cs
- CodeDelegateCreateExpression.cs
- GroupBoxAutomationPeer.cs
- DrawListViewSubItemEventArgs.cs
- PassportAuthentication.cs
- StorageAssociationTypeMapping.cs
- LoginCancelEventArgs.cs
- LongValidatorAttribute.cs
- HostingPreferredMapPath.cs
- WebPartDisplayModeCancelEventArgs.cs
- UserUseLicenseDictionaryLoader.cs
- HttpCookiesSection.cs
- ButtonFlatAdapter.cs
- UpdatePanelControlTrigger.cs
- URI.cs
- ProgressBarHighlightConverter.cs
- DelegateTypeInfo.cs
- SoapSchemaExporter.cs
- CommandID.cs
- CompoundFileReference.cs
- DrawingContextWalker.cs
- StructuralType.cs
- MethodBody.cs
- XmlQueryContext.cs
- MatrixAnimationUsingKeyFrames.cs
- XmlRawWriterWrapper.cs
- DefaultValueAttribute.cs
- IsolatedStorageFileStream.cs
- EdmToObjectNamespaceMap.cs
- ChangeToolStripParentVerb.cs
- DataColumnMapping.cs
- DeflateEmulationStream.cs
- TextTreePropertyUndoUnit.cs
- RelationshipConverter.cs
- PaperSize.cs
- EventMappingSettingsCollection.cs
- TypePropertyEditor.cs
- ToolTipAutomationPeer.cs
- DataGridTablesFactory.cs
- FixedPageProcessor.cs
- WindowsSpinner.cs
- PersonalizationAdministration.cs
- ArraySet.cs
- PersonalizableTypeEntry.cs
- DataGridHeaderBorder.cs
- ProgressBar.cs
- AsyncCompletedEventArgs.cs
- ParameterToken.cs
- TreeNode.cs
- TerminatorSinks.cs
- SmiGettersStream.cs
- PropertyChangingEventArgs.cs
- XpsLiterals.cs
- BookmarkUndoUnit.cs
- ConfigXmlElement.cs
- Visitors.cs
- AuthenticationService.cs
- DesignerHelpers.cs
- FileVersion.cs
- XsdDataContractImporter.cs
- WebScriptEndpointElement.cs
- MessageSecurityOverTcp.cs
- ChildDocumentBlock.cs
- handlecollector.cs
- ValueTypeFixupInfo.cs
- IdentityManager.cs
- SystemIcmpV4Statistics.cs
- XPathNodeHelper.cs
- FastEncoder.cs
- ColumnTypeConverter.cs
- QilBinary.cs
- DataControlCommands.cs
- CatalogPartCollection.cs
- Profiler.cs
- XmlQuerySequence.cs
- ResetableIterator.cs
- EditorZone.cs
- PopupEventArgs.cs
- Scalars.cs
- HtmlElement.cs
- ApplicationFileParser.cs
- RequestReplyCorrelator.cs
- InfoCardPolicy.cs
- PageSettings.cs
- ArrayMergeHelper.cs