Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeMemberCollection.cs / 1 / 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
- NullableLongSumAggregationOperator.cs
- Int32Animation.cs
- TreeNodeBinding.cs
- MatchAttribute.cs
- CanExecuteRoutedEventArgs.cs
- EngineSite.cs
- ListItemCollection.cs
- ActivitySurrogateSelector.cs
- Compiler.cs
- SimpleHandlerFactory.cs
- LinqDataSourceContextEventArgs.cs
- DataGridViewSortCompareEventArgs.cs
- NetNamedPipeSecurityMode.cs
- ScrollableControl.cs
- ChildrenQuery.cs
- UserPreferenceChangedEventArgs.cs
- LogStore.cs
- MemoryRecordBuffer.cs
- DecryptRequest.cs
- BoundColumn.cs
- TreeViewCancelEvent.cs
- Grant.cs
- CodeDomLocalizationProvider.cs
- RtfControlWordInfo.cs
- ConnectorMovedEventArgs.cs
- TextHidden.cs
- ShaderEffect.cs
- SqlFlattener.cs
- ChooseAction.cs
- DesignRelationCollection.cs
- StringAnimationUsingKeyFrames.cs
- PingOptions.cs
- BorderSidesEditor.cs
- PropagatorResult.cs
- CodeTypeConstructor.cs
- OdbcRowUpdatingEvent.cs
- FileDialog_Vista.cs
- Script.cs
- XhtmlConformanceSection.cs
- PngBitmapEncoder.cs
- HttpDigestClientCredential.cs
- SettingsBindableAttribute.cs
- SqlTrackingWorkflowInstance.cs
- WeakEventTable.cs
- NavigationService.cs
- LocalizabilityAttribute.cs
- DataGridViewCellMouseEventArgs.cs
- arabicshape.cs
- MaskedTextBox.cs
- FontStyle.cs
- TypeDescriptor.cs
- RegexMatch.cs
- HttpApplicationStateWrapper.cs
- ExpressionServices.cs
- TrackingMemoryStream.cs
- DataGridViewTextBoxCell.cs
- Paragraph.cs
- SchemaCreator.cs
- TimeSpanStorage.cs
- InvalidCommandTreeException.cs
- CheckBoxBaseAdapter.cs
- TranslateTransform3D.cs
- StorageSetMapping.cs
- SafePipeHandle.cs
- SmtpException.cs
- GenericTextProperties.cs
- NullReferenceException.cs
- AvTraceDetails.cs
- FileLoadException.cs
- XmlNullResolver.cs
- OperationAbortedException.cs
- OrderedDictionary.cs
- Process.cs
- EntitySqlQueryState.cs
- ConfigXmlAttribute.cs
- _LocalDataStoreMgr.cs
- SqlXml.cs
- EUCJPEncoding.cs
- CommonDialog.cs
- IDReferencePropertyAttribute.cs
- Suspend.cs
- Header.cs
- ECDsa.cs
- PtsContext.cs
- WebHttpBinding.cs
- CalendarButtonAutomationPeer.cs
- TypeGeneratedEventArgs.cs
- SubclassTypeValidatorAttribute.cs
- AttachedPropertyBrowsableAttribute.cs
- HierarchicalDataBoundControl.cs
- CellTreeSimplifier.cs
- Logging.cs
- DefaultHttpHandler.cs
- ObjectListCommandEventArgs.cs
- SHA1.cs
- BulletDecorator.cs
- EraserBehavior.cs
- ImmutablePropertyDescriptorGridEntry.cs
- WindowsContainer.cs
- DbConnectionPoolIdentity.cs