Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeNamespaceCollection.cs / 1305376 / CodeNamespaceCollection.cs
// ------------------------------------------------------------------------------
//
//
// [....]
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// -----------------------------------------------------------------------------
//
namespace System.CodeDom {
using System;
using System.Collections;
using System.Runtime.InteropServices;
///
///
/// A collection that stores objects.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeNamespaceCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeNamespaceCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeNamespaceCollection(CodeNamespaceCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeNamespaceCollection(CodeNamespace[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeNamespace this[int index] {
get {
return ((CodeNamespace)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeNamespace value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of 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]);
}
}
///
///
/// Adds the contents of another to the end of the collection.
///
///
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]);
}
}
///
/// Gets a value indicating whether the
/// contains the specified .
///
public bool Contains(CodeNamespace value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeNamespace[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeNamespace value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeNamespace value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeNamespace value) {
List.Remove(value);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CaseInsensitiveComparer.cs
- StandardRuntimeEnumValidator.cs
- SiteMapHierarchicalDataSourceView.cs
- XslAstAnalyzer.cs
- Inflater.cs
- SequenceDesignerAccessibleObject.cs
- TimeSpan.cs
- DesignerCatalogPartChrome.cs
- SimpleWebHandlerParser.cs
- ResourceAttributes.cs
- MLangCodePageEncoding.cs
- cookiecollection.cs
- ScrollEventArgs.cs
- XmlUtil.cs
- DnsPermission.cs
- PackagingUtilities.cs
- CodeConstructor.cs
- LowerCaseStringConverter.cs
- util.cs
- ProcessManager.cs
- DebugManager.cs
- Page.cs
- complextypematerializer.cs
- SafeSystemMetrics.cs
- TextElementAutomationPeer.cs
- StoreAnnotationsMap.cs
- FormViewPageEventArgs.cs
- DbConnectionPoolGroup.cs
- ConfigXmlComment.cs
- SqlUserDefinedTypeAttribute.cs
- DataBoundControlAdapter.cs
- TreeNodeSelectionProcessor.cs
- LogicalTreeHelper.cs
- ThousandthOfEmRealDoubles.cs
- SafeEventHandle.cs
- XmlSequenceWriter.cs
- PrincipalPermission.cs
- ConnectionConsumerAttribute.cs
- TableCell.cs
- MobileUserControl.cs
- RowToFieldTransformer.cs
- PropertyItem.cs
- RecipientInfo.cs
- FakeModelItemImpl.cs
- ColorKeyFrameCollection.cs
- ProcessModule.cs
- MarkupCompilePass2.cs
- SqlNodeAnnotation.cs
- AnonymousIdentificationModule.cs
- SqlTopReducer.cs
- JsonSerializer.cs
- AssemblyAttributesGoHere.cs
- ImplicitInputBrush.cs
- LiteralSubsegment.cs
- StorageAssociationTypeMapping.cs
- XNodeValidator.cs
- NamespaceDecl.cs
- VerticalAlignConverter.cs
- StringComparer.cs
- StringUtil.cs
- RegionIterator.cs
- DivideByZeroException.cs
- CachedFontFace.cs
- TextTreeDeleteContentUndoUnit.cs
- WebPartTransformer.cs
- OdbcDataReader.cs
- templategroup.cs
- Point3DAnimationBase.cs
- SQLConvert.cs
- ErrorFormatter.cs
- NetworkInterface.cs
- WebDescriptionAttribute.cs
- DbConnectionFactory.cs
- SHA512.cs
- TextEditorCharacters.cs
- EnumType.cs
- FixedTextPointer.cs
- SpecularMaterial.cs
- MessageFormatterConverter.cs
- Converter.cs
- SafeHandles.cs
- Hashtable.cs
- COM2Enum.cs
- SelectionProcessor.cs
- XsltConvert.cs
- BasePattern.cs
- TempFiles.cs
- WasAdminWrapper.cs
- PerformanceCountersElement.cs
- DynamicILGenerator.cs
- StylusPlugin.cs
- ProxyGenerationError.cs
- ApplicationException.cs
- WorkflowMarkupSerializationException.cs
- Image.cs
- CodeMemberField.cs
- XhtmlBasicObjectListAdapter.cs
- DataGrid.cs
- HandleRef.cs
- PrefixQName.cs