Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeReferenceCollection.cs / 1 / CodeTypeReferenceCollection.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 CodeTypeReferenceCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeTypeReferenceCollection() { } ////// Initializes a new instance of ///. /// /// public CodeTypeReferenceCollection(CodeTypeReferenceCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeTypeReferenceCollection(CodeTypeReference[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeTypeReference this[int index] { get { return ((CodeTypeReference)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeTypeReference value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void Add(string value) { Add(new CodeTypeReference(value)); } ///[To be supplied.] ////// public void Add(Type value) { Add(new CodeTypeReference(value)); } ///[To be supplied.] ////// public void AddRange(CodeTypeReference[] 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(CodeTypeReferenceCollection 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(CodeTypeReference value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeTypeReference[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeTypeReference value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeTypeReference value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeTypeReference 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 CodeTypeReferenceCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeTypeReferenceCollection() { } ////// Initializes a new instance of ///. /// /// public CodeTypeReferenceCollection(CodeTypeReferenceCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeTypeReferenceCollection(CodeTypeReference[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeTypeReference this[int index] { get { return ((CodeTypeReference)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeTypeReference value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void Add(string value) { Add(new CodeTypeReference(value)); } ///[To be supplied.] ////// public void Add(Type value) { Add(new CodeTypeReference(value)); } ///[To be supplied.] ////// public void AddRange(CodeTypeReference[] 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(CodeTypeReferenceCollection 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(CodeTypeReference value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeTypeReference[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeTypeReference value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeTypeReference value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeTypeReference 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
- PrinterSettings.cs
- CommandValueSerializer.cs
- UIAgentMonitorHandle.cs
- VersionedStreamOwner.cs
- XPathMultyIterator.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- PropertyReferenceSerializer.cs
- FixedPosition.cs
- ServiceRoute.cs
- SafeArchiveContext.cs
- WebFaultClientMessageInspector.cs
- DesignerAttribute.cs
- BindingElementCollection.cs
- Vector3DCollection.cs
- ListenerBinder.cs
- ActivityExecutorOperation.cs
- EventEntry.cs
- WebControlAdapter.cs
- BufferedReceiveElement.cs
- XmlReturnWriter.cs
- ColorInterpolationModeValidation.cs
- ProxyWebPartManagerDesigner.cs
- FixedSOMImage.cs
- MouseActionConverter.cs
- LazyTextWriterCreator.cs
- WebEncodingValidatorAttribute.cs
- InputEventArgs.cs
- COM2Enum.cs
- ProviderSettings.cs
- Compiler.cs
- Metadata.cs
- RectAnimationBase.cs
- StringAttributeCollection.cs
- AppDomainManager.cs
- AvTraceDetails.cs
- OpenTypeLayoutCache.cs
- RijndaelManagedTransform.cs
- DetailsViewPageEventArgs.cs
- InstanceKeyView.cs
- ClientTargetSection.cs
- ToolStripRenderer.cs
- BadImageFormatException.cs
- ProcessProtocolHandler.cs
- BindingList.cs
- CustomAttributeSerializer.cs
- RightsManagementUser.cs
- DataGridCellsPresenter.cs
- WebResourceUtil.cs
- _LocalDataStoreMgr.cs
- ParserStreamGeometryContext.cs
- SimpleHandlerBuildProvider.cs
- WebFormsRootDesigner.cs
- Version.cs
- SHA256Managed.cs
- UidPropertyAttribute.cs
- GlyphingCache.cs
- CodeDOMUtility.cs
- Scene3D.cs
- VisualStateChangedEventArgs.cs
- DescendantOverDescendantQuery.cs
- RelationshipNavigation.cs
- MinMaxParagraphWidth.cs
- TranslateTransform.cs
- DSASignatureFormatter.cs
- NameTable.cs
- DocumentationServerProtocol.cs
- InputBuffer.cs
- MouseButton.cs
- NetworkInformationPermission.cs
- PerfService.cs
- AttachedAnnotation.cs
- XmlExpressionDumper.cs
- PerfCounters.cs
- InputScopeConverter.cs
- CacheMemory.cs
- AttributeEmitter.cs
- Thickness.cs
- ToolStripMenuItem.cs
- SoapObjectWriter.cs
- MetabaseReader.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- ProviderConnectionPoint.cs
- DropShadowBitmapEffect.cs
- ItemList.cs
- WebPartAuthorizationEventArgs.cs
- KeyboardNavigation.cs
- Handle.cs
- Dynamic.cs
- SpellerError.cs
- CreateUserErrorEventArgs.cs
- TaskFormBase.cs
- SspiSecurityTokenParameters.cs
- CollectionViewGroup.cs
- TdsValueSetter.cs
- SchemaImporter.cs
- PTConverter.cs
- IncrementalCompileAnalyzer.cs
- ListControl.cs
- GenerateTemporaryAssemblyTask.cs
- ListControl.cs