Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- GlyphsSerializer.cs
- State.cs
- AuthenticationService.cs
- SortQueryOperator.cs
- BitmapSizeOptions.cs
- DataListCommandEventArgs.cs
- LogLogRecordEnumerator.cs
- PlatformNotSupportedException.cs
- DiagnosticsConfiguration.cs
- OdbcParameterCollection.cs
- ProcessRequestArgs.cs
- RoutedEventValueSerializer.cs
- BamlResourceDeserializer.cs
- XPathBuilder.cs
- XmlDataDocument.cs
- SerialPort.cs
- CharKeyFrameCollection.cs
- ObjectResult.cs
- WebRequestModuleElement.cs
- ComboBox.cs
- ElementMarkupObject.cs
- FaultException.cs
- FacetDescriptionElement.cs
- XPathSelfQuery.cs
- CodeSubDirectoriesCollection.cs
- RepeatInfo.cs
- CursorInteropHelper.cs
- TextEditorTables.cs
- ZoneIdentityPermission.cs
- OdbcReferenceCollection.cs
- ReturnEventArgs.cs
- XappLauncher.cs
- PropertyInformationCollection.cs
- SqlDataSource.cs
- WhitespaceRule.cs
- DependencyProperty.cs
- LoadWorkflowByInstanceKeyCommand.cs
- RSACryptoServiceProvider.cs
- InputDevice.cs
- GlobalizationAssembly.cs
- ActivatedMessageQueue.cs
- WindowProviderWrapper.cs
- ChangeBlockUndoRecord.cs
- TagPrefixCollection.cs
- ByteArrayHelperWithString.cs
- WindowInteropHelper.cs
- TemplateControlCodeDomTreeGenerator.cs
- Rotation3DAnimationUsingKeyFrames.cs
- DrawingState.cs
- ImageListImage.cs
- HwndSubclass.cs
- SimpleNameService.cs
- Binding.cs
- BrowserCapabilitiesFactory.cs
- CachedBitmap.cs
- FilteredAttributeCollection.cs
- Wizard.cs
- OdbcPermission.cs
- ViewStateException.cs
- Descriptor.cs
- DefaultDiscoveryServiceExtension.cs
- GridViewRowPresenter.cs
- SpecularMaterial.cs
- DirtyTextRange.cs
- SaveFileDialog.cs
- BuildProviderUtils.cs
- RadioButtonBaseAdapter.cs
- TransformGroup.cs
- ImmutablePropertyDescriptorGridEntry.cs
- NamespaceQuery.cs
- ReadOnlyMetadataCollection.cs
- SqlDataSourceConfigureSortForm.cs
- BitmapScalingModeValidation.cs
- MasterPageCodeDomTreeGenerator.cs
- Matrix.cs
- Activity.cs
- TransformCollection.cs
- ApplicationDirectory.cs
- XPathParser.cs
- ReadOnlyDictionary.cs
- HMACSHA512.cs
- LocalizableResourceBuilder.cs
- VSWCFServiceContractGenerator.cs
- EnvironmentPermission.cs
- StringExpressionSet.cs
- ExpressionLexer.cs
- DataListItemCollection.cs
- FastEncoder.cs
- GridProviderWrapper.cs
- WebPartExportVerb.cs
- DesignerAttribute.cs
- DataGridTextBoxColumn.cs
- RectangleHotSpot.cs
- SQLBytes.cs
- RectangleGeometry.cs
- LineSegment.cs
- XmlSchemaAll.cs
- SafeTimerHandle.cs
- HtmlButton.cs
- StagingAreaInputItem.cs