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
- DependencyProperty.cs
- ResourceReferenceExpression.cs
- WebServiceParameterData.cs
- _SafeNetHandles.cs
- HTTPRemotingHandler.cs
- XPathException.cs
- DataControlLinkButton.cs
- Root.cs
- DataServiceContext.cs
- UxThemeWrapper.cs
- CellParaClient.cs
- WebColorConverter.cs
- SqlRecordBuffer.cs
- Fonts.cs
- SendActivityDesigner.cs
- CodeAttributeArgumentCollection.cs
- LocatorGroup.cs
- Types.cs
- InstanceCollisionException.cs
- XmlCodeExporter.cs
- MasterPageBuildProvider.cs
- QuotedPrintableStream.cs
- ReadOnlyCollectionBase.cs
- ButtonField.cs
- FilterEventArgs.cs
- RelationshipDetailsRow.cs
- ToolStripContainerDesigner.cs
- DirectoryGroupQuery.cs
- ParallelTimeline.cs
- ThreadExceptionDialog.cs
- Cursor.cs
- ResourceDisplayNameAttribute.cs
- CompilerScopeManager.cs
- AudioException.cs
- ObjectViewListener.cs
- PageCodeDomTreeGenerator.cs
- DynamicMethod.cs
- ParseNumbers.cs
- DataFormat.cs
- EncryptedPackage.cs
- listviewsubitemcollectioneditor.cs
- Wildcard.cs
- OrthographicCamera.cs
- TranslateTransform.cs
- UIElement.cs
- EntityDataSourceWizardForm.cs
- Highlights.cs
- Light.cs
- ConfigUtil.cs
- CodeSnippetExpression.cs
- autovalidator.cs
- Tracking.cs
- FragmentNavigationEventArgs.cs
- DefaultAuthorizationContext.cs
- CommandValueSerializer.cs
- RootBuilder.cs
- SqlWriter.cs
- SignerInfo.cs
- MailWebEventProvider.cs
- HttpCacheParams.cs
- DriveNotFoundException.cs
- JsonSerializer.cs
- OrderedDictionaryStateHelper.cs
- LinkConverter.cs
- GregorianCalendar.cs
- DragDrop.cs
- UnrecognizedPolicyAssertionElement.cs
- IgnoreDeviceFilterElement.cs
- RelationalExpressions.cs
- RemotingSurrogateSelector.cs
- WindowsAuthenticationEventArgs.cs
- XPathDocument.cs
- DetailsViewCommandEventArgs.cs
- SqlCacheDependency.cs
- WinFormsSecurity.cs
- ResXBuildProvider.cs
- ToolStripContentPanel.cs
- Automation.cs
- XsltLibrary.cs
- SqlDataReader.cs
- ColumnResizeAdorner.cs
- JulianCalendar.cs
- codemethodreferenceexpression.cs
- ConfigurationFileMap.cs
- LinearGradientBrush.cs
- UnsafeNativeMethods.cs
- XmlSerializerSection.cs
- TableParagraph.cs
- DefaultPropertyAttribute.cs
- PeerNameRegistration.cs
- EntitySet.cs
- HyperLinkStyle.cs
- figurelength.cs
- Line.cs
- EntityContainer.cs
- LoadedEvent.cs
- RegistrationServices.cs
- EditorZoneDesigner.cs
- WindowsSolidBrush.cs
- SiteMembershipCondition.cs