Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeDeclarationCollection.cs / 1 / CodeTypeDeclarationCollection.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 CodeTypeDeclarationCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeTypeDeclarationCollection() { } ////// Initializes a new instance of ///. /// /// public CodeTypeDeclarationCollection(CodeTypeDeclarationCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeTypeDeclarationCollection(CodeTypeDeclaration[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeTypeDeclaration this[int index] { get { return ((CodeTypeDeclaration)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeTypeDeclaration value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeTypeDeclaration[] 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(CodeTypeDeclarationCollection 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(CodeTypeDeclaration value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeTypeDeclaration[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeTypeDeclaration value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeTypeDeclaration value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeTypeDeclaration value) { List.Remove(value); } } }Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TypeSystem.cs
- LinqDataSourceDisposeEventArgs.cs
- WmpBitmapEncoder.cs
- SubclassTypeValidator.cs
- ServiceManagerHandle.cs
- InstancePersistenceContext.cs
- DBBindings.cs
- Transform.cs
- AttributeData.cs
- CultureInfoConverter.cs
- COMException.cs
- SoapCommonClasses.cs
- RenderData.cs
- TextSearch.cs
- HelpKeywordAttribute.cs
- HttpListener.cs
- VoiceObjectToken.cs
- ToolStripPanelRow.cs
- HotSpot.cs
- ExternalFile.cs
- RectangleGeometry.cs
- ErrorFormatterPage.cs
- ExtendedProtectionPolicyElement.cs
- RewritingSimplifier.cs
- PropertyKey.cs
- ScopedMessagePartSpecification.cs
- ConfigurationValues.cs
- HttpAsyncResult.cs
- XPathScanner.cs
- TrayIconDesigner.cs
- DispatcherObject.cs
- TabOrder.cs
- TypeToStringValueConverter.cs
- GridViewCommandEventArgs.cs
- DataViewManagerListItemTypeDescriptor.cs
- _NetRes.cs
- ISFTagAndGuidCache.cs
- XmlSchemaAnnotated.cs
- AdapterUtil.cs
- TimeoutException.cs
- UIElementParaClient.cs
- Permission.cs
- KeyInterop.cs
- XmlCustomFormatter.cs
- RelationshipConverter.cs
- RegexMatch.cs
- ByteArrayHelperWithString.cs
- Int16Converter.cs
- printdlgexmarshaler.cs
- ArraySortHelper.cs
- ResourceDefaultValueAttribute.cs
- HiddenFieldPageStatePersister.cs
- XsdSchemaFileEditor.cs
- Debug.cs
- TraceUtility.cs
- MeasurementDCInfo.cs
- HwndSource.cs
- SQLMoneyStorage.cs
- Number.cs
- EndGetFileNameFromUserRequest.cs
- OleDbStruct.cs
- __FastResourceComparer.cs
- TimeoutValidationAttribute.cs
- Clipboard.cs
- BaseProcessor.cs
- ParameterModifier.cs
- StreamGeometry.cs
- SingleObjectCollection.cs
- NativeMethods.cs
- TextEmbeddedObject.cs
- MaskedTextProvider.cs
- TargetControlTypeAttribute.cs
- HitTestFilterBehavior.cs
- CodeTypeMemberCollection.cs
- DispatcherEventArgs.cs
- GuidelineCollection.cs
- FontStretch.cs
- WindowsListView.cs
- InfoCard.cs
- ConditionalBranch.cs
- RequestSecurityTokenResponseCollection.cs
- UriTemplatePathSegment.cs
- NGCUIElementCollectionSerializerAsync.cs
- CodeExpressionRuleDeclaration.cs
- RbTree.cs
- Material.cs
- ScrollEventArgs.cs
- QualifiedCellIdBoolean.cs
- RefreshEventArgs.cs
- SimpleLine.cs
- Win32.cs
- DirectoryObjectSecurity.cs
- DataSourceControl.cs
- DbConnectionStringBuilder.cs
- XpsFontSubsetter.cs
- SoapFormatter.cs
- DesignerActionHeaderItem.cs
- AdornerPresentationContext.cs
- ToolStripDropDownItem.cs
- SspiSecurityToken.cs