Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / CodeCatchClauseCollection.cs / 1 / CodeCatchClauseCollection.cs
// ------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ////// [ 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 /// . // Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ////// [ 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
- _WebProxyDataBuilder.cs
- ResponseBodyWriter.cs
- VirtualizingStackPanel.cs
- XmlComplianceUtil.cs
- Style.cs
- AdRotator.cs
- ToolStripDropDownClosingEventArgs.cs
- PrimitiveType.cs
- SmtpFailedRecipientsException.cs
- InfoCardProofToken.cs
- Misc.cs
- SymbolType.cs
- FixedSOMImage.cs
- PageThemeParser.cs
- UrlParameterWriter.cs
- BooleanFacetDescriptionElement.cs
- MatchAllMessageFilter.cs
- FilteredDataSetHelper.cs
- DWriteFactory.cs
- NextPreviousPagerField.cs
- ImageKeyConverter.cs
- RectConverter.cs
- MultipartContentParser.cs
- CheckBox.cs
- DataGridViewImageCell.cs
- SoapAttributes.cs
- WindowsButton.cs
- TransformProviderWrapper.cs
- SqlAggregateChecker.cs
- MonitoringDescriptionAttribute.cs
- InvalidDataException.cs
- GeneralTransform.cs
- versioninfo.cs
- ActivationServices.cs
- KeyManager.cs
- ConnectionOrientedTransportChannelListener.cs
- NamespaceEmitter.cs
- PersonalizationProviderCollection.cs
- EntityClassGenerator.cs
- GradientStopCollection.cs
- InternalRelationshipCollection.cs
- MobileErrorInfo.cs
- PropertyValueUIItem.cs
- ModelFunctionTypeElement.cs
- MediaEntryAttribute.cs
- RuleProcessor.cs
- ZipIORawDataFileBlock.cs
- Crc32.cs
- DynamicValidatorEventArgs.cs
- SafePEFileHandle.cs
- UnsafeNativeMethods.cs
- ResizeGrip.cs
- HttpModuleCollection.cs
- SqlGenericUtil.cs
- RadioButton.cs
- Span.cs
- coordinator.cs
- ConnectionsZone.cs
- PeerApplication.cs
- DBConnectionString.cs
- GroupDescription.cs
- TemplatedWizardStep.cs
- ValidationPropertyAttribute.cs
- MenuItemBinding.cs
- WorkflowViewStateService.cs
- XamlDesignerSerializationManager.cs
- MetricEntry.cs
- DisplayInformation.cs
- GenericTypeParameterBuilder.cs
- WmlTextBoxAdapter.cs
- XmlMembersMapping.cs
- RowTypeElement.cs
- LinqDataSourceHelper.cs
- CmsInterop.cs
- ToolboxItemCollection.cs
- HtmlInputButton.cs
- CancellationTokenRegistration.cs
- RuntimeConfig.cs
- SafeLibraryHandle.cs
- ListCollectionView.cs
- QueryCreatedEventArgs.cs
- WebPartActionVerb.cs
- QueryContext.cs
- DataRowChangeEvent.cs
- DocumentViewerBaseAutomationPeer.cs
- SocketPermission.cs
- JsonFormatReaderGenerator.cs
- CalendarTable.cs
- PackageRelationshipSelector.cs
- NamespaceList.cs
- ProcessHostFactoryHelper.cs
- Timer.cs
- ControlCollection.cs
- HandlerWithFactory.cs
- HttpChannelHelpers.cs
- ellipse.cs
- IPPacketInformation.cs
- ExpandableObjectConverter.cs
- ConsoleCancelEventArgs.cs
- TextBoxBase.cs