Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeParameterCollection.cs / 1305376 / CodeTypeParameterCollection.cs
// ------------------------------------------------------------------------------ //// // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeTypeParameterCollection : CollectionBase { public CodeTypeParameterCollection() { } public CodeTypeParameterCollection(CodeTypeParameterCollection value) { this.AddRange(value); } public CodeTypeParameterCollection(CodeTypeParameter[] value) { this.AddRange(value); } public CodeTypeParameter this[int index] { get { return ((CodeTypeParameter)(List[index])); } set { List[index] = value; } } public int Add(CodeTypeParameter value) { return List.Add(value); } public void Add(string value) { Add(new CodeTypeParameter(value)); } public void AddRange(CodeTypeParameter[] value) { if (value == null) { throw new ArgumentNullException("value"); } for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) { this.Add(value[i]); } } public void AddRange(CodeTypeParameterCollection 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]); } } public bool Contains(CodeTypeParameter value) { return List.Contains(value); } public void CopyTo(CodeTypeParameter[] array, int index) { List.CopyTo(array, index); } public int IndexOf(CodeTypeParameter value) { return List.IndexOf(value); } public void Insert(int index, CodeTypeParameter value) { List.Insert(index, value); } public void Remove(CodeTypeParameter value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[....] // Copyright (c) Microsoft Corporation. All rights reserved. //
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- smtppermission.cs
- TableSectionStyle.cs
- BoundField.cs
- URLAttribute.cs
- SQLInt32.cs
- FixedSOMImage.cs
- IPPacketInformation.cs
- DependencyPropertyChangedEventArgs.cs
- PageAsyncTask.cs
- SplitContainer.cs
- ResourcesGenerator.cs
- TreeViewAutomationPeer.cs
- OracleMonthSpan.cs
- GridViewAutomationPeer.cs
- DataGridViewCellStateChangedEventArgs.cs
- QueryAccessibilityHelpEvent.cs
- ImageMap.cs
- Animatable.cs
- RawContentTypeMapper.cs
- StdValidatorsAndConverters.cs
- GuidelineCollection.cs
- Schema.cs
- Msec.cs
- FrameDimension.cs
- UnsupportedPolicyOptionsException.cs
- TreeNodeClickEventArgs.cs
- ProvideValueServiceProvider.cs
- MeasureItemEvent.cs
- TcpActivation.cs
- MonthCalendarDesigner.cs
- WindowsNonControl.cs
- SoapCommonClasses.cs
- NamespaceEmitter.cs
- SiteMap.cs
- DataSourceCache.cs
- HttpServerUtilityBase.cs
- FormatVersion.cs
- KeyConverter.cs
- GeneralTransform3DGroup.cs
- DeviceSpecificChoice.cs
- TypeInformation.cs
- DrawListViewSubItemEventArgs.cs
- SecurityRuntime.cs
- InvokeSchedule.cs
- BitmapVisualManager.cs
- CodeCommentStatementCollection.cs
- MapPathBasedVirtualPathProvider.cs
- DiscreteKeyFrames.cs
- Column.cs
- Variant.cs
- OleDbReferenceCollection.cs
- DataGridViewCellStateChangedEventArgs.cs
- XmlToDatasetMap.cs
- BuilderInfo.cs
- TileBrush.cs
- ExecutionPropertyManager.cs
- CatalogPart.cs
- DataGridPreparingCellForEditEventArgs.cs
- SettingsPropertyCollection.cs
- EventListener.cs
- SendMailErrorEventArgs.cs
- TemplatedWizardStep.cs
- FileDialog_Vista_Interop.cs
- DataTableReader.cs
- MiniMapControl.xaml.cs
- ContextInformation.cs
- VScrollBar.cs
- DataGridViewUtilities.cs
- RectIndependentAnimationStorage.cs
- XmlSchemas.cs
- ExeConfigurationFileMap.cs
- WebPartTracker.cs
- DoubleLink.cs
- BaseUriHelper.cs
- FixedTextContainer.cs
- safelinkcollection.cs
- Currency.cs
- ProtocolsConfigurationHandler.cs
- SmiConnection.cs
- CompModSwitches.cs
- _AuthenticationState.cs
- FastPropertyAccessor.cs
- TrustSection.cs
- APCustomTypeDescriptor.cs
- PipelineModuleStepContainer.cs
- TypedRowHandler.cs
- FontFamilyIdentifier.cs
- RawStylusInputCustomData.cs
- HashHelpers.cs
- WebPartVerb.cs
- HttpModuleAction.cs
- TableProviderWrapper.cs
- HtmlControl.cs
- SettingsContext.cs
- SystemMulticastIPAddressInformation.cs
- MiniAssembly.cs
- IdnElement.cs
- MULTI_QI.cs
- BasicHttpMessageSecurity.cs
- StandardCommands.cs