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
- CapabilitiesState.cs
- RoleExceptions.cs
- SchemaCollectionPreprocessor.cs
- WindowsListViewSubItem.cs
- FileLoadException.cs
- GridViewColumn.cs
- EntityContainerEmitter.cs
- PointAnimationUsingKeyFrames.cs
- WindowsIdentity.cs
- AsyncCompletedEventArgs.cs
- exports.cs
- ButtonBaseAutomationPeer.cs
- RealProxy.cs
- SemanticResolver.cs
- ScriptRegistrationManager.cs
- SqlFacetAttribute.cs
- DataListItem.cs
- SelectorAutomationPeer.cs
- ContentElement.cs
- AlignmentYValidation.cs
- NameTable.cs
- FastEncoder.cs
- CultureSpecificStringDictionary.cs
- MessageBuilder.cs
- Material.cs
- UIElement3D.cs
- XamlTreeBuilder.cs
- EventData.cs
- XmlILAnnotation.cs
- DetailsView.cs
- NamespaceListProperty.cs
- NativeMethods.cs
- TaiwanLunisolarCalendar.cs
- StaticTextPointer.cs
- CornerRadiusConverter.cs
- Application.cs
- QilFunction.cs
- MessageSecurityOverMsmqElement.cs
- XmlExtensionFunction.cs
- ListViewDeletedEventArgs.cs
- LayoutTableCell.cs
- GenericTextProperties.cs
- MatrixStack.cs
- SqlCacheDependency.cs
- Buffer.cs
- Maps.cs
- RegexCompiler.cs
- SqlFacetAttribute.cs
- XmlCustomFormatter.cs
- ForwardPositionQuery.cs
- XmlSchemaSimpleTypeList.cs
- RuleSetReference.cs
- EventProxy.cs
- XamlSerializerUtil.cs
- OpenTypeLayout.cs
- ListViewItem.cs
- EntityDesignerDataSourceView.cs
- WebServiceData.cs
- WebPartConnectVerb.cs
- DifferencingCollection.cs
- RotateTransform.cs
- TextProperties.cs
- SiteMap.cs
- OdbcException.cs
- ToolboxControl.cs
- Pens.cs
- HtmlToClrEventProxy.cs
- ObjectDataSourceView.cs
- LineServicesRun.cs
- WaitHandle.cs
- NamespaceList.cs
- QilBinary.cs
- DoubleLinkList.cs
- ExtensionCollection.cs
- CSharpCodeProvider.cs
- WebHttpDispatchOperationSelectorData.cs
- IResourceProvider.cs
- StreamInfo.cs
- Quad.cs
- WebConfigurationHostFileChange.cs
- DefaultMemberAttribute.cs
- _Connection.cs
- URL.cs
- DemultiplexingDispatchMessageFormatter.cs
- FormsAuthenticationCredentials.cs
- FacetChecker.cs
- ItemCollection.cs
- CommandPlan.cs
- DateTimeFormat.cs
- MouseOverProperty.cs
- Operand.cs
- XamlRtfConverter.cs
- SafeMILHandleMemoryPressure.cs
- CodeThrowExceptionStatement.cs
- HostingPreferredMapPath.cs
- XmlStreamStore.cs
- mediaeventargs.cs
- XmlSchemaObject.cs
- XslException.cs
- WebException.cs