Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeMemberCollection.cs / 1305376 / CodeTypeMemberCollection.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 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
- DataRowChangeEvent.cs
- ChannelServices.cs
- WpfKnownType.cs
- Button.cs
- DataGridViewRowConverter.cs
- FreeFormDragDropManager.cs
- OutputScopeManager.cs
- DataStreamFromComStream.cs
- IntAverageAggregationOperator.cs
- EntityDataSource.cs
- HtmlTableRowCollection.cs
- Types.cs
- NeedSkipTokenVisitor.cs
- WindowsHyperlink.cs
- XmlSchemaComplexType.cs
- DialogResultConverter.cs
- Subset.cs
- WSSecurityOneDotOneReceiveSecurityHeader.cs
- OperationCanceledException.cs
- WindowsListViewItemCheckBox.cs
- AxHost.cs
- PackagePart.cs
- CopyCodeAction.cs
- TableAdapterManagerGenerator.cs
- RuntimeResourceSet.cs
- ListBoxItem.cs
- CodeDirectionExpression.cs
- Exceptions.cs
- Root.cs
- SqlConnectionString.cs
- SQLDecimal.cs
- UdpDiscoveryEndpointElement.cs
- DataGridViewCellValueEventArgs.cs
- EqualityComparer.cs
- ComponentDispatcherThread.cs
- WindowsGraphicsWrapper.cs
- FormViewPageEventArgs.cs
- GridViewRowEventArgs.cs
- PeerIPHelper.cs
- FrameworkContentElement.cs
- BaseResourcesBuildProvider.cs
- BatchStream.cs
- GridItemCollection.cs
- UICuesEvent.cs
- QuaternionIndependentAnimationStorage.cs
- CustomError.cs
- _DisconnectOverlappedAsyncResult.cs
- ProcessHostServerConfig.cs
- ServiceDescription.cs
- DoubleConverter.cs
- ComponentManagerBroker.cs
- DrawingImage.cs
- ExpressionCopier.cs
- Filter.cs
- InfoCardSymmetricCrypto.cs
- ZoneIdentityPermission.cs
- ColumnResizeUndoUnit.cs
- COM2FontConverter.cs
- XamlDesignerSerializationManager.cs
- CustomAttributeFormatException.cs
- RectAnimationUsingKeyFrames.cs
- Activator.cs
- ColorConvertedBitmap.cs
- SelectorItemAutomationPeer.cs
- RegexGroup.cs
- FontStretches.cs
- XmlObjectSerializerContext.cs
- cookiecollection.cs
- TemplateXamlParser.cs
- util.cs
- RequestNavigateEventArgs.cs
- XamlTreeBuilderBamlRecordWriter.cs
- SecurityChannelFactory.cs
- PeerDuplexChannel.cs
- DataSourceListEditor.cs
- OperationDescriptionCollection.cs
- LoggedException.cs
- _PooledStream.cs
- TextBoxRenderer.cs
- SrgsSubset.cs
- PreviewKeyDownEventArgs.cs
- XamlBrushSerializer.cs
- TreeWalker.cs
- BindableTemplateBuilder.cs
- HtmlObjectListAdapter.cs
- ApplicationProxyInternal.cs
- SubMenuStyleCollection.cs
- SocketCache.cs
- WindowsListViewItemStartMenu.cs
- SqlUdtInfo.cs
- NumericUpDownAcceleration.cs
- ToolboxBitmapAttribute.cs
- ServiceReference.cs
- TypeConverter.cs
- Directory.cs
- InvalidProgramException.cs
- SpellerError.cs
- PopOutPanel.cs
- PnrpPermission.cs
- TemplateControl.cs