Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeMemberCollection.cs / 1305376 / CodeTypeMemberCollection.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 CodeTypeMemberCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeTypeMemberCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeTypeMemberCollection(CodeTypeMemberCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeTypeMemberCollection(CodeTypeMember[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeTypeMember this[int index] {
get {
return ((CodeTypeMember)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeTypeMember value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of the .
///
public void AddRange(CodeTypeMember[] 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(CodeTypeMemberCollection 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(CodeTypeMember value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeTypeMember[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeTypeMember value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeTypeMember value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeTypeMember 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
- Buffer.cs
- AutoCompleteStringCollection.cs
- XamlUtilities.cs
- XmlNavigatorFilter.cs
- FunctionNode.cs
- ObjectDataSourceEventArgs.cs
- ObjectItemCollection.cs
- Nodes.cs
- CollectionType.cs
- VectorCollectionValueSerializer.cs
- DocumentXmlWriter.cs
- StylusPointProperties.cs
- PrintPageEvent.cs
- DataMisalignedException.cs
- GraphicsContainer.cs
- SocketException.cs
- ImageMetadata.cs
- ThousandthOfEmRealDoubles.cs
- SHA256.cs
- ExternalFile.cs
- HttpRequest.cs
- ArrayEditor.cs
- WindowsScroll.cs
- XsdDuration.cs
- LockedBorderGlyph.cs
- SequentialOutput.cs
- SymbolMethod.cs
- TransformDescriptor.cs
- SafeNativeMethodsOther.cs
- SHA256.cs
- ComponentManagerBroker.cs
- MutableAssemblyCacheEntry.cs
- WebPartCatalogCloseVerb.cs
- StorageEntityContainerMapping.cs
- CodeNamespace.cs
- BackStopAuthenticationModule.cs
- EntityDataSourceView.cs
- Timer.cs
- ToolboxComponentsCreatedEventArgs.cs
- MDIWindowDialog.cs
- __ComObject.cs
- StateBag.cs
- keycontainerpermission.cs
- CommonProperties.cs
- NodeFunctions.cs
- UnaryNode.cs
- CurrentChangedEventManager.cs
- OneOfElement.cs
- ClientProxyGenerator.cs
- OperatingSystemVersionCheck.cs
- ExecutionContext.cs
- ToolTipAutomationPeer.cs
- sqlmetadatafactory.cs
- RegexNode.cs
- EntityViewContainer.cs
- CreateUserWizardStep.cs
- StringReader.cs
- EventDriven.cs
- NamespaceQuery.cs
- RadioButtonStandardAdapter.cs
- PermissionSet.cs
- followingquery.cs
- GatewayDefinition.cs
- StateManagedCollection.cs
- GlyphsSerializer.cs
- EntityCollection.cs
- FieldDescriptor.cs
- Type.cs
- ChildDocumentBlock.cs
- ScriptResourceInfo.cs
- Localizer.cs
- SpeechSeg.cs
- KeyInterop.cs
- SqlDataSourceCommandParser.cs
- AddingNewEventArgs.cs
- Point3DCollectionConverter.cs
- DataViewManagerListItemTypeDescriptor.cs
- ListViewInsertionMark.cs
- TransformerTypeCollection.cs
- ExternalFile.cs
- SystemIPGlobalStatistics.cs
- UpdatePanelTrigger.cs
- RealProxy.cs
- HttpModuleCollection.cs
- TextureBrush.cs
- SerializationInfo.cs
- WSIdentityFaultException.cs
- ProtocolsConfigurationEntry.cs
- JsonReaderWriterFactory.cs
- LineMetrics.cs
- PeerInvitationResponse.cs
- CompModSwitches.cs
- _NtlmClient.cs
- DataSysAttribute.cs
- ListViewItem.cs
- OracleException.cs
- SiteMapDataSource.cs
- DescriptionAttribute.cs
- OleDbCommand.cs
- SafeSecurityHelper.cs