Code:
/ FX-1434 / FX-1434 / 1.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
- XmlChildNodes.cs
- DesignerWithHeader.cs
- Wrapper.cs
- TraceInternal.cs
- panel.cs
- SqlDataAdapter.cs
- SmtpDateTime.cs
- Listbox.cs
- TransformDescriptor.cs
- autovalidator.cs
- Size.cs
- MethodExpr.cs
- DataBoundControlAdapter.cs
- ProxyWebPartManager.cs
- PeerPresenceInfo.cs
- SelectionWordBreaker.cs
- AnimationTimeline.cs
- ObjectItemConventionAssemblyLoader.cs
- SingleObjectCollection.cs
- SelectionEditor.cs
- EntityWrapper.cs
- GenericTextProperties.cs
- PatternMatcher.cs
- Types.cs
- TrackingStringDictionary.cs
- AuthenticationModulesSection.cs
- XmlSchemaSimpleContentExtension.cs
- SoapMessage.cs
- ConnectionManagementElement.cs
- PropertyMappingExceptionEventArgs.cs
- _DigestClient.cs
- DbParameterCollection.cs
- BulletDecorator.cs
- FolderBrowserDialog.cs
- UpdateTranslator.cs
- NetworkCredential.cs
- XmlMemberMapping.cs
- FtpWebResponse.cs
- MapPathBasedVirtualPathProvider.cs
- ActivityBindForm.Designer.cs
- SchemaElement.cs
- KnownIds.cs
- NamespaceDecl.cs
- ElementFactory.cs
- EpmContentSerializer.cs
- XmlSchemaExternal.cs
- CollectionViewGroupInternal.cs
- Color.cs
- BindStream.cs
- RoutedEventConverter.cs
- SafeHandle.cs
- VerificationException.cs
- WorkflowValidationFailedException.cs
- ConfigXmlDocument.cs
- NumberFormatInfo.cs
- HexParser.cs
- RemotingConfiguration.cs
- InputProcessorProfiles.cs
- Variable.cs
- EventListenerClientSide.cs
- Vector3DAnimationBase.cs
- PropertySegmentSerializationProvider.cs
- SiteMapNodeItemEventArgs.cs
- EditorServiceContext.cs
- DataGridViewColumnConverter.cs
- SchemaComplexType.cs
- TakeOrSkipQueryOperator.cs
- GeometryModel3D.cs
- TypeConverterValueSerializer.cs
- Cursors.cs
- RegexFCD.cs
- Point3DValueSerializer.cs
- mediaeventargs.cs
- RSAOAEPKeyExchangeFormatter.cs
- MeshGeometry3D.cs
- SQLInt16.cs
- ContractNamespaceAttribute.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- CssStyleCollection.cs
- DependencyStoreSurrogate.cs
- SystemThemeKey.cs
- UserPreferenceChangingEventArgs.cs
- PropertyItemInternal.cs
- CollectionType.cs
- DataGridItemCollection.cs
- WebConfigurationHost.cs
- ActivityXRefConverter.cs
- SurrogateSelector.cs
- TimeSpanStorage.cs
- TypeContext.cs
- IInstanceTable.cs
- WinEventQueueItem.cs
- ContainerParagraph.cs
- SafeNativeMethodsMilCoreApi.cs
- ReturnType.cs
- LongValidator.cs
- WebPartCatalogCloseVerb.cs
- MenuItemStyle.cs
- ReadOnlyCollection.cs
- ShapingWorkspace.cs