Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeNamespaceCollection.cs / 1 / CodeNamespaceCollection.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 CodeNamespaceCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeNamespaceCollection() { } ////// Initializes a new instance of ///. /// /// public CodeNamespaceCollection(CodeNamespaceCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeNamespaceCollection(CodeNamespace[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeNamespace this[int index] { get { return ((CodeNamespace)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeNamespace value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeNamespace[] 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(CodeNamespaceCollection 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(CodeNamespace value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeNamespace[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeNamespace value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeNamespace value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeNamespace 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
- WebDescriptionAttribute.cs
- ControlBuilder.cs
- GACIdentityPermission.cs
- UnwrappedTypesXmlSerializerManager.cs
- UnconditionalPolicy.cs
- Helpers.cs
- Icon.cs
- DataSourceXmlAttributeAttribute.cs
- AnimationException.cs
- ClockGroup.cs
- ComplexLine.cs
- DefaultTextStore.cs
- ExeContext.cs
- BitmapEffectInput.cs
- Scene3D.cs
- EndpointIdentityExtension.cs
- WebBrowserProgressChangedEventHandler.cs
- BamlWriter.cs
- SettingsAttributeDictionary.cs
- TripleDES.cs
- MouseEvent.cs
- MediaCommands.cs
- ClientTarget.cs
- DtcInterfaces.cs
- X509RawDataKeyIdentifierClause.cs
- DynamicILGenerator.cs
- ReliabilityContractAttribute.cs
- NativeMethods.cs
- GifBitmapEncoder.cs
- WebPartConnection.cs
- SchemaInfo.cs
- KeyValueInternalCollection.cs
- RadialGradientBrush.cs
- AttributeAction.cs
- PersonalizationEntry.cs
- EncryptedType.cs
- MouseActionValueSerializer.cs
- DataGridViewColumnCollection.cs
- FaultBookmark.cs
- DoubleMinMaxAggregationOperator.cs
- CookieParameter.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- UrlParameterWriter.cs
- StdValidatorsAndConverters.cs
- CqlBlock.cs
- TableItemPattern.cs
- ObjectDataSourceMethodEventArgs.cs
- ReflectTypeDescriptionProvider.cs
- SessionSwitchEventArgs.cs
- SessionStateItemCollection.cs
- QilTargetType.cs
- UTF7Encoding.cs
- DesignDataSource.cs
- BooleanExpr.cs
- EditorZone.cs
- NodeInfo.cs
- Point4D.cs
- DataRelationPropertyDescriptor.cs
- securitycriticaldata.cs
- QilTargetType.cs
- TypeHelper.cs
- SynchronizedPool.cs
- PrimitiveSchema.cs
- CreateSequence.cs
- TreeBuilder.cs
- LoadedEvent.cs
- Win32Native.cs
- RewritingProcessor.cs
- MexTcpBindingCollectionElement.cs
- ObjectDataSourceSelectingEventArgs.cs
- ManagementScope.cs
- WebPartEditorCancelVerb.cs
- DataSourceProvider.cs
- GradientStopCollection.cs
- GridLengthConverter.cs
- _NtlmClient.cs
- StronglyTypedResourceBuilder.cs
- TextOptionsInternal.cs
- ConfigXmlText.cs
- MetaTable.cs
- ICspAsymmetricAlgorithm.cs
- LayoutTable.cs
- DataGridTableCollection.cs
- SelectorAutomationPeer.cs
- CachedBitmap.cs
- SizeChangedInfo.cs
- JpegBitmapDecoder.cs
- ToolStripPanelRow.cs
- OutputCache.cs
- TransformedBitmap.cs
- GridViewColumnCollection.cs
- TypeSemantics.cs
- MobileErrorInfo.cs
- HostedTcpTransportManager.cs
- WebPartEditorApplyVerb.cs
- UnicastIPAddressInformationCollection.cs
- TreeBuilderBamlTranslator.cs
- WmlObjectListAdapter.cs
- ListViewTableRow.cs
- StorageAssociationSetMapping.cs