Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- AstTree.cs
- Triplet.cs
- hresults.cs
- SecUtil.cs
- SynchronizedInputAdaptor.cs
- EndpointDiscoveryElement.cs
- PropertyValueChangedEvent.cs
- XomlSerializationHelpers.cs
- NotSupportedException.cs
- EndOfStreamException.cs
- XmlDomTextWriter.cs
- UnmanagedMarshal.cs
- XmlSchemaExternal.cs
- SqlError.cs
- CellConstant.cs
- KeyboardDevice.cs
- XmlKeywords.cs
- AppModelKnownContentFactory.cs
- UnauthorizedAccessException.cs
- AsyncOperationLifetimeManager.cs
- UIElement3D.cs
- ColorPalette.cs
- XmlAttributes.cs
- EditorAttribute.cs
- X509ThumbprintKeyIdentifierClause.cs
- TileBrush.cs
- IUnknownConstantAttribute.cs
- DateTimeUtil.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- ExecutionEngineException.cs
- SystemColors.cs
- UnicodeEncoding.cs
- TablePattern.cs
- PermissionSet.cs
- DescendantQuery.cs
- ExpanderAutomationPeer.cs
- SymmetricKey.cs
- WebBrowserNavigatedEventHandler.cs
- SmtpClient.cs
- MediaElementAutomationPeer.cs
- PolicyManager.cs
- SqlDataSourceSelectingEventArgs.cs
- UIElement.cs
- SoapInteropTypes.cs
- PageAsyncTaskManager.cs
- EllipseGeometry.cs
- Enum.cs
- ResourceAssociationTypeEnd.cs
- ThreadSafeList.cs
- TabItem.cs
- FileDialogPermission.cs
- MeshGeometry3D.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- SwitchElementsCollection.cs
- DataColumnCollection.cs
- Ppl.cs
- SqlTypeSystemProvider.cs
- PrtTicket_Base.cs
- MonthChangedEventArgs.cs
- SiteMapNodeItem.cs
- ObjectComplexPropertyMapping.cs
- ClientSideQueueItem.cs
- PersistNameAttribute.cs
- QueryCacheEntry.cs
- SettingsContext.cs
- SimpleMailWebEventProvider.cs
- TriggerAction.cs
- PageCodeDomTreeGenerator.cs
- TextPointerBase.cs
- HttpModuleAction.cs
- EventMappingSettingsCollection.cs
- TdsEnums.cs
- OpCodes.cs
- OperationContextScope.cs
- EntityRecordInfo.cs
- AssemblyResourceLoader.cs
- ImageSourceConverter.cs
- AssemblyCacheEntry.cs
- VisualStyleTypesAndProperties.cs
- DynamicRendererThreadManager.cs
- PerformanceCounterCategory.cs
- InputGestureCollection.cs
- QuaternionRotation3D.cs
- EdmComplexTypeAttribute.cs
- HttpListenerException.cs
- WebPartConnectionsCloseVerb.cs
- RawAppCommandInputReport.cs
- ClonableStack.cs
- ImpersonateTokenRef.cs
- CodeConditionStatement.cs
- GiveFeedbackEvent.cs
- MbpInfo.cs
- MemberListBinding.cs
- ProvideValueServiceProvider.cs
- ExtensionFile.cs
- ElementInit.cs
- CodeDomDecompiler.cs
- FileVersionInfo.cs
- DynamicDocumentPaginator.cs
- ProviderCollection.cs