Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeAttributeArgumentCollection.cs / 1 / CodeAttributeArgumentCollection.cs
// ------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ////// [ 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); } } }Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UnknownExceptionActionHelper.cs
- TypeElementCollection.cs
- FilteredSchemaElementLookUpTable.cs
- WindowPatternIdentifiers.cs
- DataGridViewColumnCollectionDialog.cs
- MdImport.cs
- ProcessHostConfigUtils.cs
- ProcessModelSection.cs
- StateRuntime.cs
- ProxyWebPartManager.cs
- PriorityQueue.cs
- CodeAccessPermission.cs
- XmlDocument.cs
- EventLogEntryCollection.cs
- RichTextBoxAutomationPeer.cs
- CommandPlan.cs
- EnumMemberAttribute.cs
- MulticastOption.cs
- GridPattern.cs
- Model3D.cs
- CodeAssignStatement.cs
- Accessible.cs
- ExpanderAutomationPeer.cs
- TextSearch.cs
- CurrentChangedEventManager.cs
- XmlILAnnotation.cs
- ListViewHitTestInfo.cs
- DictionaryMarkupSerializer.cs
- VisualStateChangedEventArgs.cs
- CertificateManager.cs
- EventItfInfo.cs
- FloaterBaseParaClient.cs
- TextOnlyOutput.cs
- DataGridViewComboBoxCell.cs
- SoundPlayerAction.cs
- PathFigureCollectionConverter.cs
- ComponentGlyph.cs
- MetadataImporterQuotas.cs
- ToolStripDropDownClosedEventArgs.cs
- SQLBinary.cs
- OrthographicCamera.cs
- GenericsInstances.cs
- PropertyValueUIItem.cs
- TwoPhaseCommit.cs
- SvcMapFileSerializer.cs
- RegexEditorDialog.cs
- XmlIlVisitor.cs
- SchemaImporterExtensionElement.cs
- DataStorage.cs
- SqlNotificationEventArgs.cs
- StreamGeometry.cs
- CellLabel.cs
- EpmContentSerializerBase.cs
- ExtensionSimplifierMarkupObject.cs
- ParameterToken.cs
- CallbackHandler.cs
- HatchBrush.cs
- JsonQueryStringConverter.cs
- ClientEndpointLoader.cs
- PropertyMappingExceptionEventArgs.cs
- ICspAsymmetricAlgorithm.cs
- SqlDelegatedTransaction.cs
- MarginsConverter.cs
- CoreSwitches.cs
- ApplicationException.cs
- XmlComplianceUtil.cs
- DataTableNewRowEvent.cs
- XmlSchemaFacet.cs
- StyleXamlParser.cs
- MetadataCache.cs
- XamlToRtfParser.cs
- HelpOperationInvoker.cs
- NavigatorOutput.cs
- AlphabetConverter.cs
- FormatConvertedBitmap.cs
- AlignmentYValidation.cs
- ConfigurationStrings.cs
- TypeReference.cs
- DetailsViewDesigner.cs
- RequestBringIntoViewEventArgs.cs
- ObjectDataSourceWizardForm.cs
- CheckBoxField.cs
- ApplicationContext.cs
- DataGridViewCellStyleChangedEventArgs.cs
- ImageField.cs
- SuppressIldasmAttribute.cs
- SmiGettersStream.cs
- DateBoldEvent.cs
- __Filters.cs
- FigureHelper.cs
- SQLDateTime.cs
- OdbcParameter.cs
- SchemaCollectionCompiler.cs
- MobileControlPersister.cs
- EasingKeyFrames.cs
- DBBindings.cs
- CaseStatementSlot.cs
- Span.cs
- DataServiceKeyAttribute.cs
- CodeCatchClauseCollection.cs