Code:
/ 4.0 / 4.0 / 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. //// // // ----------------------------------------------------------------------------- // 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
- MdiWindowListStrip.cs
- SoundPlayerAction.cs
- PropertyValueChangedEvent.cs
- TaiwanLunisolarCalendar.cs
- ByteStack.cs
- httpstaticobjectscollection.cs
- __Filters.cs
- XmlSerializationGeneratedCode.cs
- ScriptManagerProxy.cs
- BindingMAnagerBase.cs
- BitSet.cs
- Visitor.cs
- FormViewPagerRow.cs
- HwndHostAutomationPeer.cs
- QueryableDataSourceHelper.cs
- Html32TextWriter.cs
- ThreadAttributes.cs
- XmlReflectionMember.cs
- ManagementObject.cs
- ObjectTokenCategory.cs
- ButtonDesigner.cs
- DetailsViewInsertEventArgs.cs
- ActiveXSite.cs
- SecurityVerifiedMessage.cs
- ProfessionalColorTable.cs
- Utils.cs
- BitmapImage.cs
- UserControlBuildProvider.cs
- UriWriter.cs
- AndCondition.cs
- ResolvedKeyFrameEntry.cs
- SettingsPropertyCollection.cs
- LongAverageAggregationOperator.cs
- FileSecurity.cs
- BulletedListDesigner.cs
- GeneralTransform2DTo3DTo2D.cs
- PerformanceCounterLib.cs
- FieldNameLookup.cs
- DynamicObjectAccessor.cs
- AggregateNode.cs
- TransportConfigurationTypeElement.cs
- MultiSelectRootGridEntry.cs
- ModuleBuilderData.cs
- Events.cs
- RefreshEventArgs.cs
- ComponentCache.cs
- HttpConfigurationSystem.cs
- TraceHelpers.cs
- ConfigXmlCDataSection.cs
- BindingsCollection.cs
- StatusBarPanel.cs
- Module.cs
- TextTabProperties.cs
- EncryptedPackageFilter.cs
- SelectionService.cs
- DrawingAttributes.cs
- LogExtentCollection.cs
- SQLInt32Storage.cs
- RegionIterator.cs
- ClusterSafeNativeMethods.cs
- SubMenuStyleCollectionEditor.cs
- IconHelper.cs
- MetadataWorkspace.cs
- HandlerWithFactory.cs
- CFStream.cs
- SqlDuplicator.cs
- HttpHandlersSection.cs
- AuthenticationService.cs
- XmlSchemas.cs
- DomNameTable.cs
- BmpBitmapDecoder.cs
- httpapplicationstate.cs
- lengthconverter.cs
- MetabaseReader.cs
- CompiledXpathExpr.cs
- ProcessModelSection.cs
- Rfc2898DeriveBytes.cs
- AliasGenerator.cs
- SessionPageStatePersister.cs
- CalendarDateRangeChangingEventArgs.cs
- DataStorage.cs
- GPRECTF.cs
- Soap.cs
- NonParentingControl.cs
- Merger.cs
- BufferModeSettings.cs
- ListBoxDesigner.cs
- ToggleProviderWrapper.cs
- NavigationPropertyEmitter.cs
- PropertyGridCommands.cs
- PersonalizationProviderCollection.cs
- UpdatePanelTriggerCollection.cs
- XmlILOptimizerVisitor.cs
- CollectionBuilder.cs
- SelectionProcessor.cs
- Constants.cs
- sqlpipe.cs
- StateMachineHelpers.cs
- TreeNodeBindingDepthConverter.cs
- SignatureHelper.cs