Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeCatchClauseCollection.cs / 1305376 / CodeCatchClauseCollection.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 CodeCatchClauseCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeCatchClauseCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeCatchClauseCollection(CodeCatchClauseCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeCatchClauseCollection(CodeCatchClause[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeCatchClause this[int index] {
get {
return ((CodeCatchClause)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeCatchClause value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of the .
///
public void AddRange(CodeCatchClause[] 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(CodeCatchClauseCollection 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(CodeCatchClause value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeCatchClause[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeCatchClause value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeCatchClause value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeCatchClause 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
- DataProviderNameConverter.cs
- SoapConverter.cs
- DataGridColumnCollection.cs
- NetPipeSection.cs
- Win32SafeHandles.cs
- TextTreeTextBlock.cs
- DocumentPageTextView.cs
- AppDomainFactory.cs
- SvcMapFileLoader.cs
- BinaryFormatter.cs
- CacheHelper.cs
- KeyValueInternalCollection.cs
- TextCharacters.cs
- IsolatedStorageFilePermission.cs
- CodeGenerator.cs
- PathTooLongException.cs
- XamlLoadErrorInfo.cs
- MailMessage.cs
- DefaultAssemblyResolver.cs
- followingquery.cs
- DbConnectionFactory.cs
- CommandBindingCollection.cs
- BitmapFrameDecode.cs
- TextBoxAutoCompleteSourceConverter.cs
- CompensateDesigner.cs
- GlobalizationSection.cs
- HttpListenerException.cs
- ValidationManager.cs
- StatusBarItem.cs
- SQLBytesStorage.cs
- BinaryUtilClasses.cs
- TextProperties.cs
- RtfFormatStack.cs
- StorageEntityTypeMapping.cs
- DeleteIndexBinder.cs
- DataGridViewRow.cs
- AdornedElementPlaceholder.cs
- HtmlControl.cs
- WorkflowDesigner.cs
- _SslStream.cs
- IndentTextWriter.cs
- KeyMatchBuilder.cs
- AttributeCollection.cs
- XmlSchemaCollection.cs
- DesignerView.cs
- ObjectDataSourceDisposingEventArgs.cs
- PartialCachingAttribute.cs
- Error.cs
- TextDecorationCollectionConverter.cs
- SchemaMapping.cs
- CLSCompliantAttribute.cs
- TreeNodeStyleCollectionEditor.cs
- RenderContext.cs
- WebResourceUtil.cs
- PostBackOptions.cs
- ContainsRowNumberChecker.cs
- DBSqlParserTable.cs
- LinkButton.cs
- cookiecollection.cs
- TextRangeSerialization.cs
- MailWriter.cs
- ExceptionUtil.cs
- SerializerWriterEventHandlers.cs
- ValidatingReaderNodeData.cs
- WebSysDisplayNameAttribute.cs
- TransactionManager.cs
- HyperLinkStyle.cs
- ResourceProviderFactory.cs
- WinInet.cs
- DataFormat.cs
- AssemblyCache.cs
- ScriptResourceAttribute.cs
- BamlRecordHelper.cs
- RecordsAffectedEventArgs.cs
- QuaternionIndependentAnimationStorage.cs
- CqlQuery.cs
- TextSimpleMarkerProperties.cs
- CredentialManagerDialog.cs
- FrameworkElement.cs
- DiagnosticsConfigurationHandler.cs
- DataGridPagerStyle.cs
- HttpFileCollection.cs
- ArrayWithOffset.cs
- ProjectionPruner.cs
- EncryptedKey.cs
- SchemaConstraints.cs
- Opcode.cs
- Composition.cs
- ExtensibleClassFactory.cs
- StatusBarItem.cs
- Pair.cs
- InstanceData.cs
- VerticalAlignConverter.cs
- Delegate.cs
- CallSite.cs
- ConfigXmlComment.cs
- ItemChangedEventArgs.cs
- SEHException.cs
- XmlSchemaDocumentation.cs
- ComPlusTypeValidator.cs