Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeParameterDeclarationExpressionCollection.cs / 1 / CodeParameterDeclarationExpressionCollection.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 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); } } }Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Int32.cs
- IPEndPoint.cs
- HScrollBar.cs
- TripleDES.cs
- OdbcFactory.cs
- ReturnValue.cs
- GPPOINTF.cs
- DoubleStorage.cs
- figurelength.cs
- LayoutTable.cs
- FlowSwitch.cs
- RoutedEventHandlerInfo.cs
- HttpCapabilitiesEvaluator.cs
- DirectoryObjectSecurity.cs
- SortedDictionary.cs
- Configuration.cs
- PageHandlerFactory.cs
- PreProcessInputEventArgs.cs
- ZoomComboBox.cs
- ImportCatalogPart.cs
- AutoResizedEvent.cs
- VectorCollectionConverter.cs
- OperationSelectorBehavior.cs
- HtmlToClrEventProxy.cs
- NodeInfo.cs
- GridPattern.cs
- AsyncStreamReader.cs
- InstanceBehavior.cs
- StickyNote.cs
- SafeRightsManagementEnvironmentHandle.cs
- figurelengthconverter.cs
- PropertyConverter.cs
- EventMappingSettings.cs
- LaxModeSecurityHeaderElementInferenceEngine.cs
- SmtpCommands.cs
- SystemThemeKey.cs
- RulePatternOps.cs
- Matrix.cs
- ComplexPropertyEntry.cs
- Button.cs
- SmiMetaDataProperty.cs
- ImageDrawing.cs
- FillRuleValidation.cs
- PriorityBindingExpression.cs
- UmAlQuraCalendar.cs
- ContextMenuStrip.cs
- GridViewCommandEventArgs.cs
- FloaterParagraph.cs
- Int64Animation.cs
- DBBindings.cs
- StaticFileHandler.cs
- TextEffect.cs
- IgnorePropertiesAttribute.cs
- WpfWebRequestHelper.cs
- RequestCache.cs
- DesignerSerializationManager.cs
- PowerModeChangedEventArgs.cs
- InvalidateEvent.cs
- DataGridViewElement.cs
- CryptoHelper.cs
- LinkLabelLinkClickedEvent.cs
- XmlNamespaceMapping.cs
- ReferencedCollectionType.cs
- UdpDiscoveryEndpointProvider.cs
- CharacterString.cs
- ServiceProviders.cs
- ArrayTypeMismatchException.cs
- PageParserFilter.cs
- TextRangeProviderWrapper.cs
- ScriptingWebServicesSectionGroup.cs
- DeviceContext.cs
- updateconfighost.cs
- Matrix3DConverter.cs
- TargetPerspective.cs
- ModifierKeysConverter.cs
- Calendar.cs
- ServiceDeploymentInfo.cs
- ProjectedWrapper.cs
- PreviewPageInfo.cs
- _LoggingObject.cs
- ContentHostHelper.cs
- JournalNavigationScope.cs
- TextTreePropertyUndoUnit.cs
- SqlBooleanMismatchVisitor.cs
- EventData.cs
- StateRuntime.cs
- ConnectorSelectionGlyph.cs
- CapiSymmetricAlgorithm.cs
- CompiledAction.cs
- AnonymousIdentificationModule.cs
- ResourceProviderFactory.cs
- AdPostCacheSubstitution.cs
- SHA256Managed.cs
- _ConnectionGroup.cs
- AccessDataSourceView.cs
- Models.cs
- MethodBuilderInstantiation.cs
- SimpleTextLine.cs
- TimeSpanValidatorAttribute.cs
- RegexGroupCollection.cs