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
- EntityDataSourceSelectedEventArgs.cs
- ConfigXmlWhitespace.cs
- StructuredTypeEmitter.cs
- StorageScalarPropertyMapping.cs
- TypeConvertions.cs
- HostedBindingBehavior.cs
- RegexFCD.cs
- ToolboxItem.cs
- PageClientProxyGenerator.cs
- Vector3DCollectionValueSerializer.cs
- Literal.cs
- CodeArrayCreateExpression.cs
- PeerContact.cs
- clipboard.cs
- VoiceChangeEventArgs.cs
- DataFieldConverter.cs
- ThemeDictionaryExtension.cs
- _emptywebproxy.cs
- ArgIterator.cs
- OleDbTransaction.cs
- DataGrid.cs
- SchemaSetCompiler.cs
- DecoderFallbackWithFailureFlag.cs
- QuerySettings.cs
- InkCollectionBehavior.cs
- HandlerBase.cs
- HtmlEmptyTagControlBuilder.cs
- WindowsEditBox.cs
- Msmq.cs
- LayoutTableCell.cs
- EpmAttributeNameBuilder.cs
- FixedTextContainer.cs
- InputManager.cs
- SettingsPropertyCollection.cs
- StandardToolWindows.cs
- columnmapkeybuilder.cs
- UpdateException.cs
- TrimSurroundingWhitespaceAttribute.cs
- QuaternionAnimation.cs
- SocketElement.cs
- MultiView.cs
- VirtualPathUtility.cs
- XPathParser.cs
- XmlMembersMapping.cs
- ListCollectionView.cs
- PolicyUnit.cs
- BamlMapTable.cs
- UnsafeNativeMethods.cs
- DSASignatureDeformatter.cs
- XmlCodeExporter.cs
- EdmError.cs
- MetabaseReader.cs
- DeliveryStrategy.cs
- DynamicEntity.cs
- columnmapfactory.cs
- MembershipPasswordException.cs
- NameTable.cs
- PropertyGridView.cs
- Helpers.cs
- PagerSettings.cs
- SqlRowUpdatingEvent.cs
- DataGridViewAccessibleObject.cs
- KoreanLunisolarCalendar.cs
- compensatingcollection.cs
- ExtensionSimplifierMarkupObject.cs
- XpsPackagingPolicy.cs
- WorkflowPageSetupDialog.cs
- SerialPort.cs
- EventWaitHandle.cs
- WebPartTransformerAttribute.cs
- Stack.cs
- DateTimeConstantAttribute.cs
- TransactionScope.cs
- Command.cs
- GridView.cs
- StopStoryboard.cs
- CrossSiteScriptingValidation.cs
- BackgroundFormatInfo.cs
- RegexCaptureCollection.cs
- BeginEvent.cs
- AddInServer.cs
- DelayDesigner.cs
- AdCreatedEventArgs.cs
- PrivateFontCollection.cs
- KeyValuePair.cs
- DbParameterCollectionHelper.cs
- TextLineBreak.cs
- WhereaboutsReader.cs
- PreviewPageInfo.cs
- EditorBrowsableAttribute.cs
- FilterEventArgs.cs
- ExtendedProtectionPolicy.cs
- CommonGetThemePartSize.cs
- DSACryptoServiceProvider.cs
- sqlnorm.cs
- DeferrableContentConverter.cs
- ByteConverter.cs
- ObjectDataSourceStatusEventArgs.cs
- NameSpaceExtractor.cs
- HtmlInputButton.cs