Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ------------------------------------------------------------------------------ //Removes a specific ///from the /// . // 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); } } } // 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
- EntityCommandCompilationException.cs
- WeakReference.cs
- DataGridViewSelectedRowCollection.cs
- TcpHostedTransportConfiguration.cs
- TextSelectionHelper.cs
- NameSpaceEvent.cs
- TypeSystem.cs
- ControllableStoryboardAction.cs
- MenuItemBindingCollection.cs
- Activator.cs
- VScrollBar.cs
- CodeTypeReference.cs
- WindowsGraphics2.cs
- ActiveDocumentEvent.cs
- XsdBuilder.cs
- ContextMenuService.cs
- DeleteIndexBinder.cs
- cookiecontainer.cs
- ChtmlTextBoxAdapter.cs
- SeverityFilter.cs
- WrapPanel.cs
- FontCacheUtil.cs
- EventMap.cs
- RenderData.cs
- WebPartZoneBase.cs
- EntityWrapper.cs
- SqlBulkCopy.cs
- FontDriver.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- DateBoldEvent.cs
- Win32KeyboardDevice.cs
- ClientConfigurationHost.cs
- SettingsPropertyWrongTypeException.cs
- PointAnimationUsingPath.cs
- TableRow.cs
- InputDevice.cs
- XMLSyntaxException.cs
- EpmContentSerializerBase.cs
- EventWaitHandleSecurity.cs
- AddingNewEventArgs.cs
- PasswordTextContainer.cs
- BrowsableAttribute.cs
- UIElement3DAutomationPeer.cs
- DeferredSelectedIndexReference.cs
- DbBuffer.cs
- PageRequestManager.cs
- odbcmetadatacolumnnames.cs
- InertiaExpansionBehavior.cs
- Sql8ConformanceChecker.cs
- TextPointer.cs
- RangeEnumerable.cs
- FrameworkContentElementAutomationPeer.cs
- ContainerActivationHelper.cs
- RuntimeHelpers.cs
- ColorConverter.cs
- XmlTypeAttribute.cs
- DataBindingCollectionConverter.cs
- FrameworkTemplate.cs
- AnnotationDocumentPaginator.cs
- DataException.cs
- GenericQueueSurrogate.cs
- StructuralObject.cs
- DataSourceCache.cs
- MessageSecurityOverTcp.cs
- PropertyTabAttribute.cs
- EventPropertyMap.cs
- DrawingVisual.cs
- ComponentResourceManager.cs
- WindowsComboBox.cs
- ExpressionBindings.cs
- CollectionViewProxy.cs
- RegexWriter.cs
- ApplicationGesture.cs
- WizardSideBarListControlItemEventArgs.cs
- HyperLinkDesigner.cs
- Dynamic.cs
- PersonalizableAttribute.cs
- safelinkcollection.cs
- CodeTypeParameterCollection.cs
- ConstraintEnumerator.cs
- OperatingSystem.cs
- BuildResultCache.cs
- OutputChannel.cs
- LineMetrics.cs
- LookupNode.cs
- SplashScreenNativeMethods.cs
- ExpandSegmentCollection.cs
- ProfilePropertySettings.cs
- PagesChangedEventArgs.cs
- SHA256Managed.cs
- GACIdentityPermission.cs
- CipherData.cs
- MachineKeySection.cs
- InstanceNameConverter.cs
- ContourSegment.cs
- EntityDataSourceDesigner.cs
- PrintDocument.cs
- SrgsOneOf.cs
- FastEncoderWindow.cs
- ProgressBar.cs