Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeCatchClauseCollection.cs / 1305376 / CodeCatchClauseCollection.cs
// ------------------------------------------------------------------------------ //// // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeCatchClauseCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeCatchClauseCollection() { } ////// Initializes a new instance of ///. /// /// public CodeCatchClauseCollection(CodeCatchClauseCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeCatchClauseCollection(CodeCatchClause[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeCatchClause this[int index] { get { return ((CodeCatchClause)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeCatchClause value) { return List.Add(value); } ///Adds a ///with the specified value to 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]); } } ///Copies the elements of an array to the end of the ///. /// 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]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CodeCatchClause value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeCatchClause[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeCatchClause value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeCatchClause value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeCatchClause value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ------------------------------------------------------------------------------ //Removes a specific ///from the /// . // // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeCatchClauseCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeCatchClauseCollection() { } ////// Initializes a new instance of ///. /// /// public CodeCatchClauseCollection(CodeCatchClauseCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeCatchClauseCollection(CodeCatchClause[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeCatchClause this[int index] { get { return ((CodeCatchClause)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeCatchClause value) { return List.Add(value); } ///Adds a ///with the specified value to 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]); } } ///Copies the elements of an array to the end of the ///. /// 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]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CodeCatchClause value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeCatchClause[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeCatchClause value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeCatchClause value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeCatchClause value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UniqueEventHelper.cs
- QueueProcessor.cs
- DataListItem.cs
- Clock.cs
- LoginView.cs
- StreamWriter.cs
- Compiler.cs
- BoundField.cs
- HtmlUtf8RawTextWriter.cs
- RSACryptoServiceProvider.cs
- IndentTextWriter.cs
- HandoffBehavior.cs
- HostingEnvironment.cs
- EncoderExceptionFallback.cs
- EncoderReplacementFallback.cs
- SafeBuffer.cs
- TransactionTable.cs
- ReferentialConstraint.cs
- MimeBasePart.cs
- TextTreeNode.cs
- DispatcherEventArgs.cs
- IdentitySection.cs
- HtmlInputReset.cs
- RadioButtonDesigner.cs
- Walker.cs
- InternalBufferOverflowException.cs
- _DisconnectOverlappedAsyncResult.cs
- ToolStripRendererSwitcher.cs
- HwndStylusInputProvider.cs
- RijndaelCryptoServiceProvider.cs
- MoveSizeWinEventHandler.cs
- PrimarySelectionGlyph.cs
- BroadcastEventHelper.cs
- ImageDesigner.cs
- TextEditorCharacters.cs
- SqlDataSourceSummaryPanel.cs
- PipelineComponent.cs
- NodeInfo.cs
- SqlConnectionStringBuilder.cs
- UniqueID.cs
- StyleModeStack.cs
- LifetimeManager.cs
- ResourceReader.cs
- base64Transforms.cs
- PrePostDescendentsWalker.cs
- Int64KeyFrameCollection.cs
- safemediahandle.cs
- Canvas.cs
- TextStore.cs
- InternalSendMessage.cs
- Cloud.cs
- XmlIterators.cs
- ProxyFragment.cs
- TextModifierScope.cs
- XmlAttributes.cs
- TextTreeUndo.cs
- CurrencyWrapper.cs
- ActivityAction.cs
- RootAction.cs
- InitiatorSessionSymmetricMessageSecurityProtocol.cs
- _SSPISessionCache.cs
- TextBoxView.cs
- XmlQueryTypeFactory.cs
- TimeSpan.cs
- Internal.cs
- StylusTouchDevice.cs
- Attributes.cs
- TableRowCollection.cs
- DataSet.cs
- GroupDescription.cs
- SlipBehavior.cs
- TraceLog.cs
- CompositionAdorner.cs
- HostAdapter.cs
- BitmapEffectInputData.cs
- ColumnMapTranslator.cs
- CodeDomLoader.cs
- FlatButtonAppearance.cs
- AlternateView.cs
- MappingSource.cs
- ClientOptions.cs
- XmlArrayItemAttribute.cs
- EngineSite.cs
- ConvertersCollection.cs
- InkCanvas.cs
- MailWebEventProvider.cs
- BinaryObjectReader.cs
- AuthenticationServiceManager.cs
- SplitterCancelEvent.cs
- WebSysDefaultValueAttribute.cs
- EncodingNLS.cs
- UrlMappingCollection.cs
- UpdateInfo.cs
- WindowsNonControl.cs
- SafeMemoryMappedFileHandle.cs
- PackageRelationship.cs
- UriSchemeKeyedCollection.cs
- MailAddressCollection.cs
- FormatterConverter.cs
- OutputChannel.cs