Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- Html32TextWriter.cs
- PersistNameAttribute.cs
- Hashtable.cs
- ListBase.cs
- ExpressionBuilder.cs
- AttributeUsageAttribute.cs
- MinimizableAttributeTypeConverter.cs
- SQLDoubleStorage.cs
- cache.cs
- StopStoryboard.cs
- LayoutInformation.cs
- TextTrailingWordEllipsis.cs
- TreeNodeConverter.cs
- DataExchangeServiceBinder.cs
- CultureInfoConverter.cs
- Stopwatch.cs
- CroppedBitmap.cs
- FormClosingEvent.cs
- DictionaryManager.cs
- CodeStatementCollection.cs
- QuaternionAnimationBase.cs
- TypedAsyncResult.cs
- ButtonBaseAdapter.cs
- PlaceHolder.cs
- RijndaelManagedTransform.cs
- OleAutBinder.cs
- ReliabilityContractAttribute.cs
- CodeDomConfigurationHandler.cs
- RuntimeHandles.cs
- IsolatedStorageFile.cs
- HitTestResult.cs
- SymLanguageVendor.cs
- FixedTextBuilder.cs
- ExtendedPropertyInfo.cs
- BasePropertyDescriptor.cs
- TabPage.cs
- EntityDataSourceDataSelection.cs
- ParentUndoUnit.cs
- MenuItem.cs
- CryptoProvider.cs
- TcpClientChannel.cs
- CloudCollection.cs
- TextRangeSerialization.cs
- SettingsPropertyWrongTypeException.cs
- AuthorizationSection.cs
- DataControlLinkButton.cs
- HtmlInputRadioButton.cs
- ServicePerformanceCounters.cs
- TextServicesProperty.cs
- DtdParser.cs
- WindowsAuthenticationModule.cs
- GridEntry.cs
- SrgsElement.cs
- SubMenuStyleCollectionEditor.cs
- _TransmitFileOverlappedAsyncResult.cs
- UnicastIPAddressInformationCollection.cs
- UserMapPath.cs
- PropertyManager.cs
- BamlVersionHeader.cs
- MemberPath.cs
- RectAnimationClockResource.cs
- DialogWindow.cs
- ServiceContractViewControl.cs
- WorkflowEnvironment.cs
- HttpResponseInternalBase.cs
- baseaxisquery.cs
- BufferedStream.cs
- TextEditorTables.cs
- MenuEventArgs.cs
- JoinSymbol.cs
- MaxMessageSizeStream.cs
- ClockController.cs
- WindowsStatic.cs
- PropertyTabAttribute.cs
- ViewStateModeByIdAttribute.cs
- SharedConnectionWorkflowTransactionService.cs
- ContainerParagraph.cs
- DetailsViewUpdateEventArgs.cs
- GlyphCollection.cs
- TextTreeRootNode.cs
- PatternMatcher.cs
- CodeSubDirectoriesCollection.cs
- MILUtilities.cs
- Route.cs
- ScrollItemPattern.cs
- RoleBoolean.cs
- SharedPerformanceCounter.cs
- EventDescriptor.cs
- CurrencyWrapper.cs
- Peer.cs
- HostingPreferredMapPath.cs
- WindowsFormsHost.cs
- InertiaTranslationBehavior.cs
- RegexTree.cs
- ObjectListDataBindEventArgs.cs
- ListenerConfig.cs
- ManagedFilter.cs
- WebPartCollection.cs
- LinqDataSourceUpdateEventArgs.cs
- Authorization.cs