Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / CodeCommentStatementCollection.cs / 1 / CodeCommentStatementCollection.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 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 /// . // 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 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
- XmlSchemaAttributeGroup.cs
- MappedMetaModel.cs
- VirtualPathProvider.cs
- ProfessionalColorTable.cs
- EditorAttribute.cs
- PermissionListSet.cs
- ResolveNameEventArgs.cs
- SettingsProperty.cs
- ComponentSerializationService.cs
- DataGridItemEventArgs.cs
- FormsAuthenticationTicket.cs
- ServiceObjectContainer.cs
- BitmapEffectGeneralTransform.cs
- HttpException.cs
- Vector.cs
- XPathChildIterator.cs
- ProcessModelSection.cs
- SelectionPatternIdentifiers.cs
- DocumentAutomationPeer.cs
- RSACryptoServiceProvider.cs
- DisplayNameAttribute.cs
- BitSet.cs
- FloatUtil.cs
- ConsoleKeyInfo.cs
- ConfigXmlAttribute.cs
- LocalizationComments.cs
- ElementUtil.cs
- AbstractSvcMapFileLoader.cs
- Error.cs
- oledbmetadatacollectionnames.cs
- HttpModuleActionCollection.cs
- brushes.cs
- ListViewDeleteEventArgs.cs
- TableLayout.cs
- OdbcCommand.cs
- MonikerSyntaxException.cs
- StatusBarAutomationPeer.cs
- BrowserCapabilitiesFactoryBase.cs
- PointHitTestParameters.cs
- ActivityScheduledQuery.cs
- WebConfigurationHostFileChange.cs
- LineSegment.cs
- EmbeddedObject.cs
- IndexingContentUnit.cs
- BaseProcessor.cs
- CompileXomlTask.cs
- XmlReaderSettings.cs
- HttpCookieCollection.cs
- FileUtil.cs
- SplineQuaternionKeyFrame.cs
- MemberNameValidator.cs
- ResourceDescriptionAttribute.cs
- RawUIStateInputReport.cs
- BitSet.cs
- ThemeDictionaryExtension.cs
- recordstatescratchpad.cs
- OciLobLocator.cs
- Queue.cs
- DocumentSchemaValidator.cs
- TcpAppDomainProtocolHandler.cs
- HostVisual.cs
- DebugView.cs
- SkinBuilder.cs
- AlphabeticalEnumConverter.cs
- IPHostEntry.cs
- FileSystemWatcher.cs
- Parser.cs
- CatalogZone.cs
- FixedSOMTable.cs
- HttpPostedFile.cs
- ToolStripItemCollection.cs
- TextSyndicationContentKindHelper.cs
- PasswordDeriveBytes.cs
- DataKeyCollection.cs
- ReferencedType.cs
- dataobject.cs
- ContainerFilterService.cs
- LambdaExpression.cs
- RemotingClientProxy.cs
- GetPageCompletedEventArgs.cs
- __Error.cs
- WinFormsUtils.cs
- RemoveStoryboard.cs
- DataAccessor.cs
- CalculatedColumn.cs
- XmlSchemaComplexContent.cs
- PrivateFontCollection.cs
- InternalException.cs
- XsdDataContractExporter.cs
- IntMinMaxAggregationOperator.cs
- Cursors.cs
- BuildResult.cs
- GridItemCollection.cs
- StreamProxy.cs
- Query.cs
- DoubleIndependentAnimationStorage.cs
- FactoryGenerator.cs
- METAHEADER.cs
- TypeUsageBuilder.cs
- PenLineJoinValidation.cs