Code:
/ 4.0 / 4.0 / 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.
// ------------------------------------------------------------------------------
//
//
// [....]
// 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
- Itemizer.cs
- _HeaderInfo.cs
- QueryCacheEntry.cs
- BaseDataList.cs
- DataGridViewCellPaintingEventArgs.cs
- Vector3DValueSerializer.cs
- ContextMenuStripActionList.cs
- EnumUnknown.cs
- Enumerable.cs
- DataServiceException.cs
- AttributeProviderAttribute.cs
- DataGridViewRowCancelEventArgs.cs
- Brushes.cs
- TheQuery.cs
- AnyAllSearchOperator.cs
- HashRepartitionStream.cs
- FormsAuthentication.cs
- StylusDevice.cs
- ObjectToIdCache.cs
- DictionaryContent.cs
- FileLogRecordEnumerator.cs
- SiteMapPath.cs
- ConditionalExpression.cs
- HttpServerVarsCollection.cs
- SettingsPropertyValue.cs
- _LocalDataStore.cs
- IncrementalHitTester.cs
- MsmqChannelFactory.cs
- updateconfighost.cs
- Viewport2DVisual3D.cs
- AliasedSlot.cs
- TrackingMemoryStreamFactory.cs
- Missing.cs
- MonthCalendar.cs
- HierarchicalDataTemplate.cs
- WindowsScroll.cs
- RegionIterator.cs
- SkinBuilder.cs
- ConfigurationLoader.cs
- DurableOperationContext.cs
- SafeEventLogReadHandle.cs
- MatchingStyle.cs
- TagMapCollection.cs
- XmlDeclaration.cs
- CodeGroup.cs
- DataRecord.cs
- ArrangedElementCollection.cs
- GB18030Encoding.cs
- WindowPatternIdentifiers.cs
- TableItemPattern.cs
- DesignTimeTemplateParser.cs
- DataSourceHelper.cs
- XhtmlMobileTextWriter.cs
- DocobjHost.cs
- DocumentViewerBaseAutomationPeer.cs
- DataGridColumnEventArgs.cs
- Token.cs
- OverflowException.cs
- RsaEndpointIdentity.cs
- ExpressionParser.cs
- HwndHost.cs
- DataTableMappingCollection.cs
- ConstructorArgumentAttribute.cs
- XmlElementCollection.cs
- DataGridAddNewRow.cs
- CodeDOMUtility.cs
- SspiWrapper.cs
- GridToolTip.cs
- ButtonDesigner.cs
- ProfileEventArgs.cs
- DocumentViewerHelper.cs
- TcpClientCredentialType.cs
- XmlWhitespace.cs
- XmlCharCheckingWriter.cs
- CultureInfo.cs
- BitArray.cs
- FileDetails.cs
- PowerModeChangedEventArgs.cs
- versioninfo.cs
- DynamicUpdateCommand.cs
- EntityDataSourceDesignerHelper.cs
- InfoCardTraceRecord.cs
- CngKey.cs
- AvTraceFormat.cs
- Empty.cs
- ProfilePropertyMetadata.cs
- TimeEnumHelper.cs
- DataTableCollection.cs
- EnlistmentTraceIdentifier.cs
- CodePageUtils.cs
- BufferedReadStream.cs
- UntypedNullExpression.cs
- Models.cs
- DeclarationUpdate.cs
- Properties.cs
- RealizationContext.cs
- DataObjectMethodAttribute.cs
- ImageListImageEditor.cs
- RenderTargetBitmap.cs
- DummyDataSource.cs