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
- SecurityContextSecurityTokenResolver.cs
- ThreadAbortException.cs
- COM2FontConverter.cs
- ConsoleKeyInfo.cs
- QueryStringParameter.cs
- CodeChecksumPragma.cs
- WorkflowCreationContext.cs
- BezierSegment.cs
- MetadataArtifactLoader.cs
- NumericUpDown.cs
- DataControlFieldHeaderCell.cs
- LinkDesigner.cs
- HierarchicalDataSourceControl.cs
- SendDesigner.xaml.cs
- MDIClient.cs
- StreamProxy.cs
- ValueHandle.cs
- BaseDataList.cs
- SystemColors.cs
- MetadataArtifactLoaderCompositeFile.cs
- TypeConverterAttribute.cs
- CheckPair.cs
- RelationshipSet.cs
- DrawingServices.cs
- WorkflowOperationFault.cs
- ChildTable.cs
- CompoundFileReference.cs
- RuleProcessor.cs
- GeometryHitTestParameters.cs
- ObjectListField.cs
- ControlCollection.cs
- SplineKeyFrames.cs
- Figure.cs
- ImageCodecInfo.cs
- SafeRightsManagementSessionHandle.cs
- SiteMembershipCondition.cs
- XmlSerializationWriter.cs
- TextEditorTyping.cs
- MimeTypePropertyAttribute.cs
- OracleCommandSet.cs
- MimeWriter.cs
- DropShadowBitmapEffect.cs
- MDIControlStrip.cs
- PrtCap_Public.cs
- DbConnectionClosed.cs
- UTF8Encoding.cs
- EpmContentDeSerializer.cs
- ListViewItemMouseHoverEvent.cs
- OleDbPermission.cs
- XmlRootAttribute.cs
- BaseUriHelper.cs
- BamlResourceSerializer.cs
- ToolStripPanel.cs
- InstanceDataCollectionCollection.cs
- Int32RectConverter.cs
- MobilePage.cs
- ConnectivityStatus.cs
- FirstMatchCodeGroup.cs
- ValueChangedEventManager.cs
- DataErrorValidationRule.cs
- WebBrowserUriTypeConverter.cs
- MapPathBasedVirtualPathProvider.cs
- XdrBuilder.cs
- SortDescriptionCollection.cs
- ContentIterators.cs
- XmlILTrace.cs
- SystemWebSectionGroup.cs
- BaseProcessProtocolHandler.cs
- ProxyWebPart.cs
- TableCell.cs
- Rfc2898DeriveBytes.cs
- RelationshipFixer.cs
- HttpCapabilitiesBase.cs
- MultiPageTextView.cs
- ServiceDeploymentInfo.cs
- RoutedCommand.cs
- CompilationSection.cs
- WindowsUpDown.cs
- ToolStripHighContrastRenderer.cs
- Facet.cs
- WorkflowWebHostingModule.cs
- HtmlInputImage.cs
- ReadOnlyNameValueCollection.cs
- ComboBoxAutomationPeer.cs
- MimeTypeMapper.cs
- BindingList.cs
- Highlights.cs
- EmulateRecognizeCompletedEventArgs.cs
- Win32SafeHandles.cs
- SafeFileMappingHandle.cs
- UnsafeNativeMethods.cs
- CheckBoxList.cs
- CompoundFileStorageReference.cs
- TypeUnloadedException.cs
- XsltException.cs
- CompilerScope.Storage.cs
- MediaTimeline.cs
- DesignerRegionMouseEventArgs.cs
- ChangeDirector.cs
- EventLogPermissionEntry.cs