Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeNamespaceCollection.cs / 1 / CodeNamespaceCollection.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 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 /// . // 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 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
- SortedDictionary.cs
- AssemblyName.cs
- ScrollViewerAutomationPeer.cs
- SqlDataSourceCommandParser.cs
- StorageAssociationTypeMapping.cs
- TypeUsageBuilder.cs
- CustomError.cs
- LinqTreeNodeEvaluator.cs
- DesignerListAdapter.cs
- DrawingAttributeSerializer.cs
- SignatureHelper.cs
- ServiceEndpoint.cs
- ClonableStack.cs
- ConnectionStringSettings.cs
- HandlerFactoryCache.cs
- GeneratedContractType.cs
- PowerModeChangedEventArgs.cs
- MessageSmuggler.cs
- OleDbErrorCollection.cs
- AttachedPropertiesService.cs
- PolyBezierSegmentFigureLogic.cs
- CommonGetThemePartSize.cs
- SharedStream.cs
- Permission.cs
- ParamArrayAttribute.cs
- SetState.cs
- DesignTimeHTMLTextWriter.cs
- EllipseGeometry.cs
- RoleExceptions.cs
- DataTableClearEvent.cs
- InteropExecutor.cs
- DataGridViewBand.cs
- MapPathBasedVirtualPathProvider.cs
- RenamedEventArgs.cs
- ComponentEditorForm.cs
- XmlWellformedWriter.cs
- PageRanges.cs
- DocumentReference.cs
- MsmqTransportBindingElement.cs
- SchemaNotation.cs
- PerformanceCounterPermissionEntry.cs
- SymmetricCryptoHandle.cs
- RegexStringValidatorAttribute.cs
- AdRotator.cs
- ZeroOpNode.cs
- DataTablePropertyDescriptor.cs
- PolyBezierSegment.cs
- SiteMap.cs
- OracleException.cs
- ListViewItem.cs
- ContextMenuService.cs
- InputLangChangeEvent.cs
- RequestStatusBarUpdateEventArgs.cs
- NetworkInformationPermission.cs
- FileUtil.cs
- PermissionRequestEvidence.cs
- ActiveXHost.cs
- CasesDictionary.cs
- InitiatorSessionSymmetricMessageSecurityProtocol.cs
- NullableConverter.cs
- FrameworkContentElement.cs
- SwitchElementsCollection.cs
- _CacheStreams.cs
- BoundPropertyEntry.cs
- MdiWindowListStrip.cs
- ItemType.cs
- WebPartTransformerCollection.cs
- SplineKeyFrames.cs
- ColorKeyFrameCollection.cs
- TabRenderer.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- FrameSecurityDescriptor.cs
- BrowserInteropHelper.cs
- Win32Exception.cs
- DocumentViewer.cs
- WindowsAltTab.cs
- StringBuilder.cs
- DesignerVerb.cs
- Helpers.cs
- DataGridViewLinkColumn.cs
- NTAccount.cs
- ECDsa.cs
- CodeIterationStatement.cs
- SurrogateEncoder.cs
- NameValuePair.cs
- basecomparevalidator.cs
- DataGridViewColumnCollectionDialog.cs
- BitmapCacheBrush.cs
- OdbcDataReader.cs
- DetailsView.cs
- BitmapEffectInput.cs
- ValidationSummary.cs
- SelectionItemProviderWrapper.cs
- TemplateLookupAction.cs
- ExplicitDiscriminatorMap.cs
- ClientRuntimeConfig.cs
- EdmScalarPropertyAttribute.cs
- XamlPathDataSerializer.cs
- X509CertificateTrustedIssuerElementCollection.cs
- CharAnimationBase.cs