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
- WebContext.cs
- EmptyStringExpandableObjectConverter.cs
- MessageFormatterConverter.cs
- PrePrepareMethodAttribute.cs
- PropertyMap.cs
- util.cs
- CallbackValidator.cs
- Viewport2DVisual3D.cs
- HelpInfo.cs
- SoapIncludeAttribute.cs
- bidPrivateBase.cs
- Rule.cs
- DataServiceHostFactory.cs
- IndicFontClient.cs
- ToolStripCodeDomSerializer.cs
- BamlBinaryReader.cs
- BuildProvider.cs
- TextEditorCopyPaste.cs
- TrackingAnnotationCollection.cs
- DataRelationPropertyDescriptor.cs
- XmlNodeComparer.cs
- GetPageNumberCompletedEventArgs.cs
- VScrollBar.cs
- IItemContainerGenerator.cs
- Resources.Designer.cs
- Clipboard.cs
- HttpRawResponse.cs
- ProxyHwnd.cs
- AmbientLight.cs
- ComponentRenameEvent.cs
- ServiceModelConfigurationSectionGroup.cs
- XamlWrapperReaders.cs
- AllMembershipCondition.cs
- bindurihelper.cs
- DataGrid.cs
- MediaElementAutomationPeer.cs
- ScriptingProfileServiceSection.cs
- TailCallAnalyzer.cs
- QueryOperationResponseOfT.cs
- RC2CryptoServiceProvider.cs
- PrimitiveXmlSerializers.cs
- LowerCaseStringConverter.cs
- SettingsPropertyWrongTypeException.cs
- SqlCommandSet.cs
- DockPatternIdentifiers.cs
- QilInvokeLateBound.cs
- SoapAttributeOverrides.cs
- InfoCardClaim.cs
- TableItemStyle.cs
- AuthenticationConfig.cs
- InitialServerConnectionReader.cs
- EdmSchemaError.cs
- cache.cs
- TabControl.cs
- BamlRecordWriter.cs
- MimeWriter.cs
- BaseCAMarshaler.cs
- PersonalizationAdministration.cs
- StatusBarDrawItemEvent.cs
- DataRowCollection.cs
- TextRunCache.cs
- OleDbException.cs
- ListBoxItemAutomationPeer.cs
- StreamGeometry.cs
- versioninfo.cs
- RecognizerStateChangedEventArgs.cs
- Utils.cs
- OdbcConnectionStringbuilder.cs
- ReachIDocumentPaginatorSerializerAsync.cs
- EditorZoneBase.cs
- BroadcastEventHelper.cs
- IArgumentProvider.cs
- SqlConnectionPoolGroupProviderInfo.cs
- LineProperties.cs
- ControlParameter.cs
- PeerToPeerException.cs
- DesignSurfaceCollection.cs
- PersonalizationProvider.cs
- wmiprovider.cs
- RequestBringIntoViewEventArgs.cs
- HttpProfileGroupBase.cs
- ListViewContainer.cs
- DirectoryInfo.cs
- Events.cs
- IdentityHolder.cs
- Tokenizer.cs
- EdmEntityTypeAttribute.cs
- PublishLicense.cs
- FrameworkContentElement.cs
- AnchoredBlock.cs
- EditorBrowsableAttribute.cs
- DataSet.cs
- StoreConnection.cs
- TypeConstant.cs
- TaiwanCalendar.cs
- Rotation3DKeyFrameCollection.cs
- NodeLabelEditEvent.cs
- COMException.cs
- ConfigurationConverterBase.cs
- IndexedEnumerable.cs