Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeNamespaceCollection.cs / 1305376 / CodeNamespaceCollection.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 CodeNamespaceCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeNamespaceCollection() { } ////// Initializes a new instance of ///. /// /// public CodeNamespaceCollection(CodeNamespaceCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeNamespaceCollection(CodeNamespace[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeNamespace this[int index] { get { return ((CodeNamespace)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeNamespace value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeNamespace[] 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(CodeNamespaceCollection 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(CodeNamespace value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeNamespace[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeNamespace value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeNamespace value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeNamespace value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ------------------------------------------------------------------------------ //Removes a specific ///from the /// . // // // ----------------------------------------------------------------------------- // 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 CodeNamespaceCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeNamespaceCollection() { } ////// Initializes a new instance of ///. /// /// public CodeNamespaceCollection(CodeNamespaceCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeNamespaceCollection(CodeNamespace[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeNamespace this[int index] { get { return ((CodeNamespace)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeNamespace value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeNamespace[] 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(CodeNamespaceCollection 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(CodeNamespace value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeNamespace[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeNamespace value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeNamespace value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeNamespace 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
- Site.cs
- ComponentTray.cs
- IsolatedStoragePermission.cs
- RegexCompilationInfo.cs
- StaticTextPointer.cs
- AsyncCompletedEventArgs.cs
- ReflectPropertyDescriptor.cs
- HierarchicalDataBoundControlAdapter.cs
- EditorPartChrome.cs
- SystemUdpStatistics.cs
- TreeNodeMouseHoverEvent.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- XmlName.cs
- sqlpipe.cs
- _DynamicWinsockMethods.cs
- ProfileSection.cs
- EmissiveMaterial.cs
- AbstractSvcMapFileLoader.cs
- DesignTimeTemplateParser.cs
- TaiwanLunisolarCalendar.cs
- NavigateEvent.cs
- RelationshipManager.cs
- GridViewColumnCollectionChangedEventArgs.cs
- ColorKeyFrameCollection.cs
- SafeBitVector32.cs
- DependencyObjectType.cs
- DBPropSet.cs
- GradientBrush.cs
- HttpHandler.cs
- ElementProxy.cs
- ButtonBase.cs
- InputQueue.cs
- SiteMapNode.cs
- BuildResultCache.cs
- TreeViewImageGenerator.cs
- SqlTransaction.cs
- InputManager.cs
- X509UI.cs
- ConnectionPointCookie.cs
- AbandonedMutexException.cs
- DLinqTableProvider.cs
- ContextInformation.cs
- SQLDecimalStorage.cs
- PowerEase.cs
- MenuDesigner.cs
- CommandLibraryHelper.cs
- DefaultTypeArgumentAttribute.cs
- DecoderFallback.cs
- SubMenuStyle.cs
- CodeRemoveEventStatement.cs
- GridItem.cs
- DrawingImage.cs
- SmiContextFactory.cs
- Transactions.cs
- WebConfigurationManager.cs
- FastEncoderWindow.cs
- ListBindingHelper.cs
- OledbConnectionStringbuilder.cs
- COM2PropertyPageUITypeConverter.cs
- EqualityComparer.cs
- HtmlForm.cs
- ObjectDataSourceDesigner.cs
- SqlDataSourceStatusEventArgs.cs
- UniqueIdentifierService.cs
- BindingCollection.cs
- CacheHelper.cs
- ProvidePropertyAttribute.cs
- SByteConverter.cs
- StyleSheetDesigner.cs
- ContentPosition.cs
- Point3DValueSerializer.cs
- VisualBrush.cs
- DateTimeOffsetStorage.cs
- MaskPropertyEditor.cs
- PerformanceCounterManager.cs
- InfoCardSymmetricAlgorithm.cs
- ChannelReliableSession.cs
- TransactionFlowBindingElement.cs
- IsolatedStorageFilePermission.cs
- GrammarBuilder.cs
- TextBoxRenderer.cs
- ListViewSortEventArgs.cs
- SqlDataSourceCustomCommandEditor.cs
- SystemIPInterfaceProperties.cs
- NegotiateStream.cs
- Point.cs
- PropertyGeneratedEventArgs.cs
- EncoderBestFitFallback.cs
- DependencyPropertyChangedEventArgs.cs
- PersistChildrenAttribute.cs
- SessionStateSection.cs
- ChangeDirector.cs
- XmlBinaryReader.cs
- X509ChainElement.cs
- StrongTypingException.cs
- DataGridViewSelectedColumnCollection.cs
- ExecutionEngineException.cs
- AvtEvent.cs
- BooleanFunctions.cs
- InitializationEventAttribute.cs