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
- EUCJPEncoding.cs
- BadImageFormatException.cs
- XmlTextAttribute.cs
- HttpModule.cs
- GenericEnumConverter.cs
- NumericPagerField.cs
- TrustLevel.cs
- SqlClientPermission.cs
- KeyedCollection.cs
- FormClosedEvent.cs
- Symbol.cs
- TextRangeEditTables.cs
- WorkflowRuntimeSection.cs
- XPathBinder.cs
- ListItemCollection.cs
- ObjectItemCollection.cs
- SqlConnectionPoolGroupProviderInfo.cs
- XsdBuildProvider.cs
- TableAutomationPeer.cs
- GridView.cs
- Rect.cs
- ObjectListGeneralPage.cs
- UnionExpr.cs
- _FtpControlStream.cs
- ipaddressinformationcollection.cs
- XMLSchema.cs
- XmlCollation.cs
- ResolveNameEventArgs.cs
- RightsManagementEncryptedStream.cs
- DispatcherSynchronizationContext.cs
- OracleCommandBuilder.cs
- ValidationEventArgs.cs
- ElapsedEventArgs.cs
- LineGeometry.cs
- SqlCaseSimplifier.cs
- SemaphoreSecurity.cs
- DrawListViewItemEventArgs.cs
- OrderByQueryOptionExpression.cs
- DataControlFieldCell.cs
- regiisutil.cs
- EntitySetBaseCollection.cs
- ValueProviderWrapper.cs
- RecognitionResult.cs
- TypeLibConverter.cs
- MetadataItem_Static.cs
- MenuItem.cs
- CompilerResults.cs
- FontResourceCache.cs
- MouseEventArgs.cs
- GetPageCompletedEventArgs.cs
- VScrollProperties.cs
- PeerNameRecordCollection.cs
- SystemIPv4InterfaceProperties.cs
- DetailsViewModeEventArgs.cs
- HeaderedContentControl.cs
- NameNode.cs
- StrokeCollectionConverter.cs
- TextTreeNode.cs
- IndicFontClient.cs
- ConfigXmlAttribute.cs
- M3DUtil.cs
- FormViewCommandEventArgs.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- DataTableReaderListener.cs
- ConfigurationException.cs
- XmlMtomReader.cs
- TemplateContent.cs
- X509UI.cs
- NetSectionGroup.cs
- Calendar.cs
- HierarchicalDataSourceControl.cs
- SortedDictionary.cs
- SelectionItemProviderWrapper.cs
- FileLoadException.cs
- PatternMatchRules.cs
- BaseProcessor.cs
- HitTestResult.cs
- ReservationCollection.cs
- Menu.cs
- DataServiceHostFactory.cs
- PtsHost.cs
- ObjectDataSourceFilteringEventArgs.cs
- XhtmlBasicLiteralTextAdapter.cs
- DynamicMethod.cs
- DefinitionBase.cs
- EncoderParameters.cs
- StrongNameUtility.cs
- Clipboard.cs
- MessageQueueConverter.cs
- WindowsTreeView.cs
- RC2CryptoServiceProvider.cs
- SerializationAttributes.cs
- BrowserTree.cs
- PropertyValue.cs
- _NegoState.cs
- DataSet.cs
- Deflater.cs
- SafeCertificateStore.cs
- ItemDragEvent.cs
- DataRelationPropertyDescriptor.cs