Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeCommentStatementCollection.cs / 1305376 / CodeCommentStatementCollection.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 CodeCommentStatementCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeCommentStatementCollection() { } ////// Initializes a new instance of ///. /// /// public CodeCommentStatementCollection(CodeCommentStatementCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeCommentStatementCollection(CodeCommentStatement[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeCommentStatement this[int index] { get { return ((CodeCommentStatement)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeCommentStatement value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeCommentStatement[] 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(CodeCommentStatementCollection 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(CodeCommentStatement value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeCommentStatement[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeCommentStatement value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeCommentStatement value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeCommentStatement 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
- AddDataControlFieldDialog.cs
- XPathExpr.cs
- IntSecurity.cs
- ToolStripOverflow.cs
- BrowserCapabilitiesCodeGenerator.cs
- ExceptionWrapper.cs
- SamlEvidence.cs
- BindingNavigator.cs
- CharacterMetricsDictionary.cs
- QueryCursorEventArgs.cs
- WebPartEventArgs.cs
- EntityDataSourceQueryBuilder.cs
- PassportAuthenticationEventArgs.cs
- TextViewSelectionProcessor.cs
- LiteralDesigner.cs
- Assert.cs
- SimpleApplicationHost.cs
- CookielessData.cs
- FileDialogCustomPlaces.cs
- ItemsControl.cs
- SrgsDocumentParser.cs
- PersonalizablePropertyEntry.cs
- CacheHelper.cs
- CardSpaceShim.cs
- SecurityContext.cs
- DocumentAutomationPeer.cs
- Invariant.cs
- Material.cs
- TextElement.cs
- PageCopyCount.cs
- EntityCommandCompilationException.cs
- DocumentViewer.cs
- InstallerTypeAttribute.cs
- OleDbInfoMessageEvent.cs
- ProfileManager.cs
- XmlAttributeOverrides.cs
- DbProviderServices.cs
- DisplayInformation.cs
- uribuilder.cs
- InkCanvasInnerCanvas.cs
- HebrewNumber.cs
- DbParameterCollectionHelper.cs
- RawStylusInputReport.cs
- SubMenuStyle.cs
- ListDictionaryInternal.cs
- QueuePathEditor.cs
- LeafCellTreeNode.cs
- SqlRetyper.cs
- FloaterParagraph.cs
- EntityRecordInfo.cs
- KeyInstance.cs
- Char.cs
- GreenMethods.cs
- SourceElementsCollection.cs
- NativeRecognizer.cs
- MULTI_QI.cs
- MetadataCacheItem.cs
- WorkflowInstanceUnhandledExceptionRecord.cs
- TextFormatter.cs
- DbParameterHelper.cs
- SystemUnicastIPAddressInformation.cs
- XmlHierarchicalDataSourceView.cs
- CollectionBase.cs
- OleDbDataReader.cs
- XmlSignificantWhitespace.cs
- DataGridViewSelectedColumnCollection.cs
- FixedBufferAttribute.cs
- HtmlPhoneCallAdapter.cs
- documentsequencetextview.cs
- Trigger.cs
- XPathNavigatorReader.cs
- DesignerPainter.cs
- FrameworkReadOnlyPropertyMetadata.cs
- PowerModeChangedEventArgs.cs
- GridItemCollection.cs
- ActiveXContainer.cs
- AuthenticationConfig.cs
- BitArray.cs
- Constants.cs
- PaintValueEventArgs.cs
- CrossAppDomainChannel.cs
- StorageAssociationSetMapping.cs
- MenuItem.cs
- Keywords.cs
- XslAst.cs
- SmiSettersStream.cs
- DataGridToolTip.cs
- StreamDocument.cs
- ApplicationProxyInternal.cs
- PngBitmapEncoder.cs
- HtmlElementErrorEventArgs.cs
- DataSourceConverter.cs
- TempEnvironment.cs
- EmptyStringExpandableObjectConverter.cs
- RegisteredHiddenField.cs
- NonPrimarySelectionGlyph.cs
- TokenBasedSet.cs
- rsa.cs
- WindowsEditBoxRange.cs
- NetworkInterface.cs