Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeDeclarationCollection.cs / 1305376 / CodeTypeDeclarationCollection.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 CodeTypeDeclarationCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeTypeDeclarationCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeTypeDeclarationCollection(CodeTypeDeclarationCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeTypeDeclarationCollection(CodeTypeDeclaration[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeTypeDeclaration this[int index] {
get {
return ((CodeTypeDeclaration)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeTypeDeclaration value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of the .
///
public void AddRange(CodeTypeDeclaration[] 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(CodeTypeDeclarationCollection 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(CodeTypeDeclaration value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeTypeDeclaration[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeTypeDeclaration value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeTypeDeclaration value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeTypeDeclaration 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 CodeTypeDeclarationCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeTypeDeclarationCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeTypeDeclarationCollection(CodeTypeDeclarationCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeTypeDeclarationCollection(CodeTypeDeclaration[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeTypeDeclaration this[int index] {
get {
return ((CodeTypeDeclaration)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeTypeDeclaration value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of the .
///
public void AddRange(CodeTypeDeclaration[] 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(CodeTypeDeclarationCollection 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(CodeTypeDeclaration value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeTypeDeclaration[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeTypeDeclaration value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeTypeDeclaration value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeTypeDeclaration 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
- WeakKeyDictionary.cs
- WsdlImporterElement.cs
- ReadOnlyDictionary.cs
- EventManager.cs
- HttpContext.cs
- Classification.cs
- XmlName.cs
- ListViewEditEventArgs.cs
- GenericRootAutomationPeer.cs
- StreamAsIStream.cs
- AccessedThroughPropertyAttribute.cs
- DataControlButton.cs
- xmlformatgeneratorstatics.cs
- WebConfigurationHostFileChange.cs
- Int32Animation.cs
- AxParameterData.cs
- TextBoxBase.cs
- StringInfo.cs
- XmlValidatingReaderImpl.cs
- CompositionTarget.cs
- KeyValuePair.cs
- RenderTargetBitmap.cs
- AssociationProvider.cs
- NotFiniteNumberException.cs
- CookieHandler.cs
- Visual3D.cs
- TargetConverter.cs
- LinearGradientBrush.cs
- SqlColumnizer.cs
- VisualBasicSettings.cs
- UnknownWrapper.cs
- DynamicPropertyReader.cs
- Expander.cs
- EdmConstants.cs
- Scene3D.cs
- SqlDependencyListener.cs
- XsltException.cs
- ConvertEvent.cs
- XmlSchemaComplexType.cs
- WebControl.cs
- DataExpression.cs
- WindowsListViewGroup.cs
- Rfc2898DeriveBytes.cs
- PropertyGeneratedEventArgs.cs
- SiteMapDataSourceDesigner.cs
- Localizer.cs
- InvokeGenerator.cs
- TextRenderingModeValidation.cs
- ObjectListCommandsPage.cs
- DataTablePropertyDescriptor.cs
- HTMLTextWriter.cs
- UniformGrid.cs
- SapiRecoContext.cs
- SoapSchemaMember.cs
- CapabilitiesRule.cs
- TextDecorationLocationValidation.cs
- UnsafeNativeMethods.cs
- ColorBlend.cs
- FileNotFoundException.cs
- GenericAuthenticationEventArgs.cs
- CategoryGridEntry.cs
- DeferredBinaryDeserializerExtension.cs
- InheritablePropertyChangeInfo.cs
- HttpListenerContext.cs
- OleDbException.cs
- QualifiedCellIdBoolean.cs
- dataSvcMapFileLoader.cs
- DelegatingTypeDescriptionProvider.cs
- DrawingAttributesDefaultValueFactory.cs
- WindowsUpDown.cs
- TrackingProfileDeserializationException.cs
- GrowingArray.cs
- QueryConverter.cs
- XsdBuilder.cs
- MergablePropertyAttribute.cs
- ContextMenuStrip.cs
- DictionaryEntry.cs
- DiagnosticTrace.cs
- HandlerFactoryWrapper.cs
- PageTheme.cs
- dataobject.cs
- SqlClientPermission.cs
- RegexCompilationInfo.cs
- DataGridViewComboBoxColumn.cs
- CompressEmulationStream.cs
- DiscoveryClientRequestChannel.cs
- XmlSerializationGeneratedCode.cs
- ActivitySurrogate.cs
- DefaultValueAttribute.cs
- DataGridCell.cs
- ChannelBuilder.cs
- ValidationService.cs
- XslTransformFileEditor.cs
- XmlQueryOutput.cs
- CustomAttribute.cs
- DataMisalignedException.cs
- SweepDirectionValidation.cs
- SqlBooleanMismatchVisitor.cs
- HttpRequestWrapper.cs
- TargetControlTypeCache.cs