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
- ToolStripManager.cs
- PolyQuadraticBezierSegment.cs
- LogRecordSequence.cs
- BCryptSafeHandles.cs
- AsymmetricSignatureFormatter.cs
- SurrogateChar.cs
- MetadataItemCollectionFactory.cs
- InternalConfigHost.cs
- SafeHandles.cs
- XsdDateTime.cs
- Overlapped.cs
- ValidationRule.cs
- ObjectContext.cs
- AdPostCacheSubstitution.cs
- altserialization.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- ErrorWrapper.cs
- FileSystemEnumerable.cs
- UserMapPath.cs
- UICuesEvent.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- Globals.cs
- StylusPointPropertyInfo.cs
- CapabilitiesState.cs
- BooleanToVisibilityConverter.cs
- ResumeStoryboard.cs
- HMACMD5.cs
- DbFunctionCommandTree.cs
- SectionInformation.cs
- PackageRelationshipCollection.cs
- parserscommon.cs
- SHA256CryptoServiceProvider.cs
- TemplatedMailWebEventProvider.cs
- formatter.cs
- SQLStringStorage.cs
- TypeConverterHelper.cs
- Event.cs
- JulianCalendar.cs
- Module.cs
- documentsequencetextpointer.cs
- DataRecordObjectView.cs
- DataGridViewRowPostPaintEventArgs.cs
- OleDbMetaDataFactory.cs
- OutputScope.cs
- BindingExpressionUncommonField.cs
- KeyedCollection.cs
- AstNode.cs
- ReadOnlyDataSource.cs
- RowCache.cs
- FormatSettings.cs
- XmlSchemaAll.cs
- CollectionBuilder.cs
- TreeViewDesigner.cs
- serverconfig.cs
- FormsAuthenticationTicket.cs
- KeyValueConfigurationElement.cs
- AddingNewEventArgs.cs
- Directory.cs
- datacache.cs
- HeaderedItemsControl.cs
- TriState.cs
- DBConnectionString.cs
- ObjectSet.cs
- PersonalizationState.cs
- Clock.cs
- TreeIterators.cs
- UserCancellationException.cs
- DockAndAnchorLayout.cs
- QueryConverter.cs
- QilValidationVisitor.cs
- FontSourceCollection.cs
- SinglePhaseEnlistment.cs
- WebPartCatalogCloseVerb.cs
- HttpHeaderCollection.cs
- WebPartConnectionsCancelVerb.cs
- BaseParaClient.cs
- CopyNamespacesAction.cs
- ApplicationSecurityInfo.cs
- ParserOptions.cs
- XamlTemplateSerializer.cs
- RIPEMD160Managed.cs
- EncryptedData.cs
- DBSqlParser.cs
- IntegerFacetDescriptionElement.cs
- XmlILConstructAnalyzer.cs
- SafeCertificateContext.cs
- ResourceWriter.cs
- Events.cs
- BitmapEffectInput.cs
- Byte.cs
- CodeTypeOfExpression.cs
- DataBoundControl.cs
- CopyNamespacesAction.cs
- FormViewUpdateEventArgs.cs
- COM2EnumConverter.cs
- EditorZoneBase.cs
- DrawToolTipEventArgs.cs
- SortDescriptionCollection.cs
- ParameterCollection.cs
- ResourceLoader.cs