Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeMemberCollection.cs / 1 / CodeTypeMemberCollection.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 CodeTypeMemberCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeTypeMemberCollection() { } ////// Initializes a new instance of ///. /// /// public CodeTypeMemberCollection(CodeTypeMemberCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeTypeMemberCollection(CodeTypeMember[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeTypeMember this[int index] { get { return ((CodeTypeMember)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeTypeMember value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeTypeMember[] 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(CodeTypeMemberCollection 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(CodeTypeMember value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeTypeMember[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeTypeMember value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeTypeMember value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeTypeMember 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 CodeTypeMemberCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeTypeMemberCollection() { } ////// Initializes a new instance of ///. /// /// public CodeTypeMemberCollection(CodeTypeMemberCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeTypeMemberCollection(CodeTypeMember[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeTypeMember this[int index] { get { return ((CodeTypeMember)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeTypeMember value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeTypeMember[] 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(CodeTypeMemberCollection 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(CodeTypeMember value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeTypeMember[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeTypeMember value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeTypeMember value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeTypeMember 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
- BuildTopDownAttribute.cs
- OdbcConnectionPoolProviderInfo.cs
- Point3DCollection.cs
- TableParaClient.cs
- SqlErrorCollection.cs
- XsltFunctions.cs
- SafeProcessHandle.cs
- XsdCachingReader.cs
- PropertyIDSet.cs
- CapabilitiesSection.cs
- DependencyProperty.cs
- DataGridView.cs
- ErrorStyle.cs
- SchemaElementDecl.cs
- IImplicitResourceProvider.cs
- RemoteWebConfigurationHostServer.cs
- TraceInternal.cs
- RawAppCommandInputReport.cs
- GradientStop.cs
- HttpCacheVary.cs
- CatalogZone.cs
- PropertyConverter.cs
- PrintPreviewControl.cs
- GridItemCollection.cs
- PrimitiveXmlSerializers.cs
- DbProviderFactoriesConfigurationHandler.cs
- Transform3DCollection.cs
- CodeTypeReferenceSerializer.cs
- SwitchElementsCollection.cs
- SQLDateTimeStorage.cs
- VisualProxy.cs
- HtmlLink.cs
- Size3DValueSerializer.cs
- Transform3DCollection.cs
- ParameterSubsegment.cs
- EditorBrowsableAttribute.cs
- SqlNodeAnnotations.cs
- MessagePropertyDescriptionCollection.cs
- PageBreakRecord.cs
- WebPartTransformer.cs
- _NegoState.cs
- SectionXmlInfo.cs
- NotifyInputEventArgs.cs
- PartManifestEntry.cs
- RandomNumberGenerator.cs
- ExpressionNode.cs
- LocationEnvironment.cs
- HttpCookie.cs
- BitmapDownload.cs
- MDIControlStrip.cs
- StubHelpers.cs
- InternalPolicyElement.cs
- SystemIPInterfaceStatistics.cs
- FrameworkContentElement.cs
- NamespaceEmitter.cs
- SchemaImporterExtensionsSection.cs
- WhitespaceSignificantCollectionAttribute.cs
- ConstNode.cs
- PropagatorResult.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- AxHost.cs
- PolicyVersionConverter.cs
- HtmlLink.cs
- RequestCachePolicyConverter.cs
- MailDefinitionBodyFileNameEditor.cs
- DoubleIndependentAnimationStorage.cs
- DataGridViewSortCompareEventArgs.cs
- ToolStripLocationCancelEventArgs.cs
- ChoiceConverter.cs
- SafeMILHandle.cs
- ObjectSpanRewriter.cs
- AuthenticatingEventArgs.cs
- TCPClient.cs
- TransportSecurityBindingElement.cs
- TagPrefixCollection.cs
- RijndaelManaged.cs
- AnonymousIdentificationModule.cs
- DocumentOrderQuery.cs
- LayoutTableCell.cs
- CurrentChangedEventManager.cs
- FixedSOMLineCollection.cs
- XPathAncestorQuery.cs
- CodeTypeDeclarationCollection.cs
- XmlEntity.cs
- Certificate.cs
- RegionInfo.cs
- SecurityHelper.cs
- KeyGestureConverter.cs
- HtmlElement.cs
- CatalogUtil.cs
- Deflater.cs
- InternalSafeNativeMethods.cs
- MethodCallConverter.cs
- xsdvalidator.cs
- XmlSchemaComplexType.cs
- Signature.cs
- SecureStringHasher.cs
- ConnectionPoolManager.cs
- Expressions.cs
- PageMediaType.cs