Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeDeclarationCollection.cs / 1 / CodeTypeDeclarationCollection.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 CodeTypeDeclarationCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeTypeDeclarationCollection() { } ////// Initializes a new instance of ///. /// /// public CodeTypeDeclarationCollection(CodeTypeDeclarationCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeTypeDeclarationCollection(CodeTypeDeclaration[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeTypeDeclaration this[int index] { get { return ((CodeTypeDeclaration)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeTypeDeclaration value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeTypeDeclaration[] 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(CodeTypeDeclarationCollection 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(CodeTypeDeclaration value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeTypeDeclaration[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeTypeDeclaration value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeTypeDeclaration value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeTypeDeclaration value) { List.Remove(value); } } }Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ParameterCollection.cs
- OutputCache.cs
- ScriptServiceAttribute.cs
- CharAnimationUsingKeyFrames.cs
- XPathScanner.cs
- ReadWriteControlDesigner.cs
- PropertyMapper.cs
- FamilyTypeface.cs
- Formatter.cs
- WhitespaceRule.cs
- ToolStripProgressBar.cs
- XmlEncoding.cs
- Win32Native.cs
- SurrogateDataContract.cs
- XmlSchemaSimpleTypeRestriction.cs
- ImageCodecInfo.cs
- ClientProtocol.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- SingleConverter.cs
- CombinedGeometry.cs
- DynamicDiscoveryDocument.cs
- ErrorEventArgs.cs
- StoreItemCollection.Loader.cs
- PageTextBox.cs
- DbParameterCollectionHelper.cs
- DataGridViewAutoSizeModeEventArgs.cs
- SqlProfileProvider.cs
- OleDbParameter.cs
- StylusPointPropertyUnit.cs
- CellCreator.cs
- EnumBuilder.cs
- DbConnectionStringBuilder.cs
- TextServicesHost.cs
- XmlSchemaAnnotation.cs
- DirectionalLight.cs
- InProcStateClientManager.cs
- BinHexDecoder.cs
- FrameSecurityDescriptor.cs
- Exceptions.cs
- BooleanAnimationBase.cs
- SqlDataReaderSmi.cs
- DataGridViewCell.cs
- DefaultMergeHelper.cs
- ObjectItemAttributeAssemblyLoader.cs
- SchemaTableColumn.cs
- ProcessStartInfo.cs
- CodeRegionDirective.cs
- BezierSegment.cs
- WebPartMinimizeVerb.cs
- QuotedStringFormatReader.cs
- ExecutionProperties.cs
- MatrixConverter.cs
- CodeAttachEventStatement.cs
- EndpointDiscoveryMetadata.cs
- WebPartDescription.cs
- X509CertificateRecipientClientCredential.cs
- EntityReference.cs
- JoinGraph.cs
- ExpandSegment.cs
- SQLDouble.cs
- DbConnectionStringBuilder.cs
- TcpClientSocketManager.cs
- SymmetricKey.cs
- FormatterConverter.cs
- StrongBox.cs
- TypedCompletedAsyncResult.cs
- CheckBoxFlatAdapter.cs
- TextChangedEventArgs.cs
- DllNotFoundException.cs
- XmlRawWriterWrapper.cs
- AuthenticationService.cs
- RenderTargetBitmap.cs
- SystemInformation.cs
- ColorKeyFrameCollection.cs
- OledbConnectionStringbuilder.cs
- SimpleApplicationHost.cs
- ExpressionVisitor.cs
- ActivityCodeDomSerializer.cs
- PopupControlService.cs
- DoubleAnimationUsingPath.cs
- KeyValueConfigurationCollection.cs
- TextContainer.cs
- Crc32.cs
- DateTimeParse.cs
- _ContextAwareResult.cs
- GlyphRunDrawing.cs
- FlowPosition.cs
- OperandQuery.cs
- ViewPort3D.cs
- EdmValidator.cs
- SqlDeflator.cs
- FixedTextPointer.cs
- processwaithandle.cs
- Matrix.cs
- SkipQueryOptionExpression.cs
- MessagePartDescription.cs
- X509ChainElement.cs
- TcpTransportSecurityElement.cs
- DllHostInitializer.cs
- EditingMode.cs