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
- GridViewColumnCollectionChangedEventArgs.cs
- DefaultEventAttribute.cs
- EastAsianLunisolarCalendar.cs
- InternalControlCollection.cs
- VideoDrawing.cs
- StrokeRenderer.cs
- WindowsSysHeader.cs
- Fonts.cs
- DockAndAnchorLayout.cs
- NativeMethodsOther.cs
- FramingFormat.cs
- SimpleWorkerRequest.cs
- SystemKeyConverter.cs
- MobileDeviceCapabilitiesSectionHandler.cs
- ImageBrush.cs
- XmlTypeAttribute.cs
- AvtEvent.cs
- CallbackTimeoutsBehavior.cs
- VirtualPathUtility.cs
- DbExpressionBuilder.cs
- SecurityCredentialsManager.cs
- ExplicitDiscriminatorMap.cs
- TextServicesLoader.cs
- LinqDataSourceView.cs
- SQLDoubleStorage.cs
- SHA512Managed.cs
- DnsPermission.cs
- LazyTextWriterCreator.cs
- AnnotationAuthorChangedEventArgs.cs
- SafeEventLogWriteHandle.cs
- SqlHelper.cs
- PriorityItem.cs
- TextRunCache.cs
- ClientViaElement.cs
- COAUTHIDENTITY.cs
- HandlerBase.cs
- ConstraintStruct.cs
- InvalidCastException.cs
- ColumnMapVisitor.cs
- DynamicPropertyReader.cs
- OdbcParameterCollection.cs
- BufferBuilder.cs
- TextContainer.cs
- JsonEnumDataContract.cs
- AutomationEvent.cs
- PreservationFileWriter.cs
- SendMessageRecord.cs
- TableStyle.cs
- EncryptedKey.cs
- AccessViolationException.cs
- WebReference.cs
- CalendarSelectionChangedEventArgs.cs
- VarRefManager.cs
- Point3D.cs
- XmlSchemaAnnotated.cs
- RuntimeHandles.cs
- Binding.cs
- PreDigestedSignedInfo.cs
- BitmapEditor.cs
- Partitioner.cs
- ReflectPropertyDescriptor.cs
- VirtualPathUtility.cs
- UserControlCodeDomTreeGenerator.cs
- StylusPointDescription.cs
- FixedDocumentSequencePaginator.cs
- SpellerStatusTable.cs
- FileLoadException.cs
- TextEffect.cs
- InvalidDataException.cs
- PersonalizationStateInfo.cs
- ScheduleChanges.cs
- Scheduling.cs
- TextOnlyOutput.cs
- SoapSchemaMember.cs
- TraceHandler.cs
- HashCryptoHandle.cs
- ReadContentAsBinaryHelper.cs
- ReadWriteObjectLock.cs
- HandlerFactoryCache.cs
- EmptyImpersonationContext.cs
- XmlTextReaderImplHelpers.cs
- EventSourceCreationData.cs
- TemplatedWizardStep.cs
- InstanceDescriptor.cs
- ServiceObjectContainer.cs
- ErrorInfoXmlDocument.cs
- AspNetCompatibilityRequirementsMode.cs
- GraphicsContext.cs
- ControlAdapter.cs
- X509Extension.cs
- ZoneLinkButton.cs
- ToolStripOverflow.cs
- ScriptReferenceEventArgs.cs
- ClientSession.cs
- VideoDrawing.cs
- Int64Converter.cs
- CompositeDataBoundControl.cs
- SQLDateTimeStorage.cs
- ProgressBarBrushConverter.cs
- IpcPort.cs