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
- arclist.cs
- QuerySafeNavigator.cs
- XPathSelfQuery.cs
- DataGridViewHeaderCell.cs
- Wow64ConfigurationLoader.cs
- securitycriticaldataformultiplegetandset.cs
- FileUtil.cs
- WindowsHyperlink.cs
- CodeExpressionCollection.cs
- AssemblyCache.cs
- TypeUtil.cs
- JapaneseCalendar.cs
- OleDbError.cs
- RecordsAffectedEventArgs.cs
- CacheChildrenQuery.cs
- ipaddressinformationcollection.cs
- ParameterBuilder.cs
- CompleteWizardStep.cs
- OverflowException.cs
- TableItemStyle.cs
- XPathDocumentNavigator.cs
- FormViewPageEventArgs.cs
- SqlFormatter.cs
- ActivityMetadata.cs
- ResXFileRef.cs
- QuadTree.cs
- StickyNoteContentControl.cs
- SafeArrayTypeMismatchException.cs
- ConfigurationSectionCollection.cs
- MsdtcClusterUtils.cs
- AssemblyAttributes.cs
- ListViewItem.cs
- COAUTHINFO.cs
- DetailsViewDeleteEventArgs.cs
- MappingItemCollection.cs
- TableItemStyle.cs
- InputMethod.cs
- NamespaceListProperty.cs
- TimeoutConverter.cs
- activationcontext.cs
- BasicSecurityProfileVersion.cs
- QilScopedVisitor.cs
- DbConnectionPoolIdentity.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- WebDescriptionAttribute.cs
- FormatException.cs
- _HTTPDateParse.cs
- XmlBufferReader.cs
- CapabilitiesSection.cs
- Control.cs
- ComboBox.cs
- SqlTypeSystemProvider.cs
- LoginView.cs
- VectorCollection.cs
- SynthesizerStateChangedEventArgs.cs
- SchemaType.cs
- AuthenticationConfig.cs
- UnaryNode.cs
- GridLength.cs
- MenuItemBindingCollection.cs
- SqlBulkCopyColumnMappingCollection.cs
- PeerSecurityHelpers.cs
- XmlCharCheckingWriter.cs
- InputLanguageEventArgs.cs
- HostingEnvironmentSection.cs
- Schema.cs
- BitConverter.cs
- FileEnumerator.cs
- MenuTracker.cs
- HttpCapabilitiesEvaluator.cs
- ThreadAttributes.cs
- ValueTable.cs
- ErrorStyle.cs
- SqlBinder.cs
- HtmlUtf8RawTextWriter.cs
- MachineSettingsSection.cs
- VisualBasicSettingsHandler.cs
- ZoneMembershipCondition.cs
- XmlDataSourceView.cs
- RequestQueue.cs
- RtfToken.cs
- Listbox.cs
- StreamInfo.cs
- CodeTypeDeclaration.cs
- TableRow.cs
- EventsTab.cs
- IncrementalReadDecoders.cs
- ZoneMembershipCondition.cs
- AnnotationComponentChooser.cs
- Queue.cs
- CodeExporter.cs
- CodeTypeDelegate.cs
- TranslateTransform3D.cs
- InvalidDataException.cs
- ToolStripDropDownClosedEventArgs.cs
- CommunicationObject.cs
- SrgsItemList.cs
- RadioButtonFlatAdapter.cs
- InternalConfigEventArgs.cs
- ContentElementCollection.cs