Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeParameterCollection.cs / 1305376 / CodeTypeParameterCollection.cs
// ------------------------------------------------------------------------------
//
//
// [....]
// 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.
//
// -----------------------------------------------------------------------------
//
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SpellerError.cs
- DbConnectionPoolIdentity.cs
- LassoHelper.cs
- NullEntityWrapper.cs
- XmlIlTypeHelper.cs
- OrderingInfo.cs
- __Error.cs
- TileBrush.cs
- TextServicesHost.cs
- Vector3DCollection.cs
- SpecialTypeDataContract.cs
- WmiInstallComponent.cs
- JsonFormatGeneratorStatics.cs
- AmbiguousMatchException.cs
- Pkcs9Attribute.cs
- ColumnTypeConverter.cs
- MetadataArtifactLoaderCompositeFile.cs
- PropertyEmitter.cs
- DetailsViewRow.cs
- mactripleDES.cs
- PointLight.cs
- InvalidCastException.cs
- TableRow.cs
- SmiEventStream.cs
- EdmMember.cs
- SessionStateSection.cs
- HitTestDrawingContextWalker.cs
- InvalidAsynchronousStateException.cs
- _NegoStream.cs
- LogLogRecordHeader.cs
- Validator.cs
- DataBinder.cs
- DataPagerFieldCollection.cs
- NativeMethods.cs
- Form.cs
- DetailsViewDeletedEventArgs.cs
- recordstate.cs
- DecimalFormatter.cs
- SqlMultiplexer.cs
- BindableTemplateBuilder.cs
- GetUserPreferenceRequest.cs
- AddInController.cs
- SqlBuilder.cs
- Matrix.cs
- ConnectionPoint.cs
- AdornerLayer.cs
- BaseConfigurationRecord.cs
- LongMinMaxAggregationOperator.cs
- ObjectAssociationEndMapping.cs
- SchemaImporterExtension.cs
- InvalidFilterCriteriaException.cs
- HttpValueCollection.cs
- DrawingBrush.cs
- ListItem.cs
- AutomationPropertyInfo.cs
- Errors.cs
- DependencyObject.cs
- ListControlDataBindingHandler.cs
- BamlTreeNode.cs
- Part.cs
- figurelengthconverter.cs
- DialogResultConverter.cs
- EncryptedReference.cs
- PagesSection.cs
- CopyOnWriteList.cs
- CharacterHit.cs
- FunctionDescription.cs
- RepeaterCommandEventArgs.cs
- RowsCopiedEventArgs.cs
- DataObjectFieldAttribute.cs
- ADMembershipProvider.cs
- ClientFormsIdentity.cs
- PixelFormats.cs
- XhtmlBasicTextBoxAdapter.cs
- Int32.cs
- SafeMILHandle.cs
- Accessible.cs
- EllipticalNodeOperations.cs
- SafeHandles.cs
- FormDocumentDesigner.cs
- XmlArrayItemAttributes.cs
- IResourceProvider.cs
- XpsImage.cs
- ModelPerspective.cs
- RecordBuilder.cs
- TakeOrSkipWhileQueryOperator.cs
- DynamicPropertyHolder.cs
- DataGridViewColumnHeaderCell.cs
- Matrix3D.cs
- MenuAdapter.cs
- regiisutil.cs
- ToolStripDesignerAvailabilityAttribute.cs
- PropertyInformationCollection.cs
- Trace.cs
- FilterException.cs
- TypeSource.cs
- DataGridViewBindingCompleteEventArgs.cs
- SqlClientWrapperSmiStreamChars.cs
- _NestedSingleAsyncResult.cs
- RemoteWebConfigurationHostServer.cs