Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeParameterDeclarationExpressionCollection.cs / 1305376 / CodeParameterDeclarationExpressionCollection.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 CodeParameterDeclarationExpressionCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeParameterDeclarationExpressionCollection() { } ////// Initializes a new instance of ///. /// /// public CodeParameterDeclarationExpressionCollection(CodeParameterDeclarationExpressionCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeParameterDeclarationExpressionCollection(CodeParameterDeclarationExpression[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeParameterDeclarationExpression this[int index] { get { return ((CodeParameterDeclarationExpression)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeParameterDeclarationExpression value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeParameterDeclarationExpression[] 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(CodeParameterDeclarationExpressionCollection 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(CodeParameterDeclarationExpression value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeParameterDeclarationExpression[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeParameterDeclarationExpression value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeParameterDeclarationExpression value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeParameterDeclarationExpression 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
- XmlnsDefinitionAttribute.cs
- CachedFontFamily.cs
- PageCatalogPart.cs
- CriticalExceptions.cs
- PasswordDeriveBytes.cs
- ResumeStoryboard.cs
- TcpTransportElement.cs
- InitializerFacet.cs
- __Filters.cs
- ButtonAutomationPeer.cs
- ListControl.cs
- SecurityTimestamp.cs
- SamlSecurityTokenAuthenticator.cs
- ServiceContractGenerationContext.cs
- RepeatEnumerable.cs
- AspProxy.cs
- ListControlDesigner.cs
- DbXmlEnabledProviderManifest.cs
- AsnEncodedData.cs
- Pair.cs
- XmlUnspecifiedAttribute.cs
- BitmapEncoder.cs
- PointUtil.cs
- CompilerScopeManager.cs
- SpellerError.cs
- ParameterToken.cs
- UshortList2.cs
- WinInetCache.cs
- EmptyStringExpandableObjectConverter.cs
- ISAPIRuntime.cs
- SqlClientPermission.cs
- Underline.cs
- BaseCollection.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- StylusTip.cs
- ViewStateModeByIdAttribute.cs
- DataGridViewCellValidatingEventArgs.cs
- SynchronizationValidator.cs
- DataGridColumnCollection.cs
- ValidatingCollection.cs
- NotFiniteNumberException.cs
- Compiler.cs
- InitializationEventAttribute.cs
- DataGridViewSelectedColumnCollection.cs
- SplineQuaternionKeyFrame.cs
- UndoManager.cs
- AnnotationResource.cs
- NavigateUrlConverter.cs
- HTMLTextWriter.cs
- Mapping.cs
- SecureEnvironment.cs
- FileCodeGroup.cs
- XsltException.cs
- _OverlappedAsyncResult.cs
- SafeMILHandle.cs
- HttpClientCertificate.cs
- PathData.cs
- XamlSerializer.cs
- BinaryReader.cs
- BeginStoryboard.cs
- RoleManagerModule.cs
- TextHidden.cs
- NetCodeGroup.cs
- CompositeActivityTypeDescriptorProvider.cs
- ControlBuilder.cs
- SqlDataSourceRefreshSchemaForm.cs
- RealProxy.cs
- KeyConverter.cs
- HwndHostAutomationPeer.cs
- ResourceDictionaryCollection.cs
- TemplateControl.cs
- MonitorWrapper.cs
- XhtmlConformanceSection.cs
- ValueTypePropertyReference.cs
- ExceptionAggregator.cs
- KeyConverter.cs
- StateManagedCollection.cs
- PriorityQueue.cs
- DesignerAutoFormatCollection.cs
- ClassicBorderDecorator.cs
- TypeConverterAttribute.cs
- ArrayWithOffset.cs
- cookiecontainer.cs
- CustomAssemblyResolver.cs
- XPathNodePointer.cs
- WebServiceEnumData.cs
- DataSourceIDConverter.cs
- indexingfiltermarshaler.cs
- TableLayoutPanelCodeDomSerializer.cs
- UIElement3D.cs
- CatalogPartCollection.cs
- BaseCodePageEncoding.cs
- DataBoundControlAdapter.cs
- Tokenizer.cs
- MethodCallConverter.cs
- RefreshResponseInfo.cs
- VisualTreeFlattener.cs
- Permission.cs
- ImmutablePropertyDescriptorGridEntry.cs
- NameValueFileSectionHandler.cs