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
- _SecureChannel.cs
- AssociationType.cs
- ByteAnimationBase.cs
- ShowExpandedMultiValueConverter.cs
- MenuItemAutomationPeer.cs
- SkewTransform.cs
- PartialCachingControl.cs
- StringArrayConverter.cs
- IsolatedStorageFile.cs
- MediaTimeline.cs
- Paragraph.cs
- AndCondition.cs
- StaticTextPointer.cs
- DataSourceView.cs
- StringAttributeCollection.cs
- TextContainerHelper.cs
- StorageFunctionMapping.cs
- DataSourceView.cs
- ReadOnlyActivityGlyph.cs
- QilPatternFactory.cs
- AuthenticationManager.cs
- Expression.cs
- RecordsAffectedEventArgs.cs
- EnumValidator.cs
- SrgsRule.cs
- AssociationSetMetadata.cs
- CompiledXpathExpr.cs
- TouchesOverProperty.cs
- MdImport.cs
- MenuItemBinding.cs
- GroupItemAutomationPeer.cs
- DateTimeStorage.cs
- ExpressionVisitorHelpers.cs
- SqlRowUpdatedEvent.cs
- FormViewInsertEventArgs.cs
- StringUtil.cs
- Base64Stream.cs
- HttpListenerRequest.cs
- OracleConnectionFactory.cs
- GeometryGroup.cs
- SecurityAppliedMessage.cs
- DocobjHost.cs
- CryptoConfig.cs
- WmlLiteralTextAdapter.cs
- METAHEADER.cs
- RecognizedPhrase.cs
- GZipStream.cs
- SecurityHelper.cs
- TimeSpanOrInfiniteValidator.cs
- ClientConfigPaths.cs
- CodeTypeReferenceCollection.cs
- CommonXSendMessage.cs
- RequestQueryParser.cs
- PipelineModuleStepContainer.cs
- SiteMapNodeItemEventArgs.cs
- GeneralTransform3DTo2DTo3D.cs
- FixedTextView.cs
- log.cs
- TileBrush.cs
- HMAC.cs
- Setter.cs
- DependencySource.cs
- smtpconnection.cs
- SqlNamer.cs
- BitmapEffectGroup.cs
- OverflowException.cs
- ClientSponsor.cs
- CreateUserErrorEventArgs.cs
- ReadOnlyNameValueCollection.cs
- AspNetSynchronizationContext.cs
- BackgroundWorker.cs
- infer.cs
- DataControlFieldCollection.cs
- SqlMultiplexer.cs
- DBCommandBuilder.cs
- ProfilePropertyNameValidator.cs
- BoundField.cs
- MonitorWrapper.cs
- SystemWebCachingSectionGroup.cs
- FilteredDataSetHelper.cs
- AlignmentXValidation.cs
- DeploymentExceptionMapper.cs
- XmlNodeChangedEventArgs.cs
- RMPermissions.cs
- CompositeFontParser.cs
- TriggerBase.cs
- TextureBrush.cs
- StandardBindingOptionalReliableSessionElement.cs
- MultipartIdentifier.cs
- CapacityStreamGeometryContext.cs
- InvalidPropValue.cs
- SystemUnicastIPAddressInformation.cs
- ProcessManager.cs
- Keywords.cs
- XmlSchemaProviderAttribute.cs
- ADMembershipProvider.cs
- SoapFault.cs
- TreeNodeConverter.cs
- _KerberosClient.cs
- ApplicationInfo.cs