Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeAttributeArgumentCollection.cs / 1 / CodeAttributeArgumentCollection.cs
// ------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// -----------------------------------------------------------------------------
//
namespace System.CodeDom {
using System;
using System.Collections;
using System.Runtime.InteropServices;
///
///
/// A collection that stores objects.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeAttributeArgumentCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeAttributeArgumentCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeAttributeArgumentCollection(CodeAttributeArgumentCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeAttributeArgumentCollection(CodeAttributeArgument[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeAttributeArgument this[int index] {
get {
return ((CodeAttributeArgument)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeAttributeArgument value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of the .
///
public void AddRange(CodeAttributeArgument[] value) {
if (value == null) {
throw new ArgumentNullException("value");
}
for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) {
this.Add(value[i]);
}
}
///
///
/// Adds the contents of another to the end of the collection.
///
///
public void AddRange(CodeAttributeArgumentCollection 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]);
}
}
///
/// Gets a value indicating whether the
/// contains the specified .
///
public bool Contains(CodeAttributeArgument value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeAttributeArgument[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeAttributeArgument value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeAttributeArgument value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeAttributeArgument 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;
///
///
/// A collection that stores objects.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeAttributeArgumentCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeAttributeArgumentCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeAttributeArgumentCollection(CodeAttributeArgumentCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeAttributeArgumentCollection(CodeAttributeArgument[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeAttributeArgument this[int index] {
get {
return ((CodeAttributeArgument)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeAttributeArgument value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of the .
///
public void AddRange(CodeAttributeArgument[] value) {
if (value == null) {
throw new ArgumentNullException("value");
}
for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) {
this.Add(value[i]);
}
}
///
///
/// Adds the contents of another to the end of the collection.
///
///
public void AddRange(CodeAttributeArgumentCollection 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]);
}
}
///
/// Gets a value indicating whether the
/// contains the specified .
///
public bool Contains(CodeAttributeArgument value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeAttributeArgument[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeAttributeArgument value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeAttributeArgument value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeAttributeArgument 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
- DataGridViewColumnConverter.cs
- StringValidator.cs
- SrgsDocument.cs
- ListBoxItemWrapperAutomationPeer.cs
- LicenseProviderAttribute.cs
- OleDbInfoMessageEvent.cs
- Repeater.cs
- HttpBufferlessInputStream.cs
- DateTimeOffsetAdapter.cs
- AccessKeyManager.cs
- NameValueCache.cs
- XmlArrayItemAttributes.cs
- SqlServices.cs
- ComboBox.cs
- PolyQuadraticBezierSegment.cs
- Panel.cs
- PageStatePersister.cs
- NativeMethods.cs
- MarkupCompiler.cs
- OledbConnectionStringbuilder.cs
- UnmanagedBitmapWrapper.cs
- XmlTextReaderImpl.cs
- PersonalizableTypeEntry.cs
- SetMemberBinder.cs
- ReadOnlyNameValueCollection.cs
- HttpApplicationStateBase.cs
- QilReference.cs
- WebControlParameterProxy.cs
- TextServicesHost.cs
- DataReaderContainer.cs
- NameValueSectionHandler.cs
- EditorZoneBase.cs
- HtmlSelect.cs
- GlyphElement.cs
- SvcMapFileLoader.cs
- MimeMultiPart.cs
- AnnotationResourceChangedEventArgs.cs
- ColumnTypeConverter.cs
- CheckBoxList.cs
- PriorityItem.cs
- TextChange.cs
- WebScriptEnablingElement.cs
- SqlException.cs
- RoleManagerSection.cs
- TextRunProperties.cs
- While.cs
- XmlSchemaFacet.cs
- TreeNodeStyle.cs
- COM2ExtendedTypeConverter.cs
- ControlCollection.cs
- SqlWebEventProvider.cs
- OdbcDataAdapter.cs
- XmlEntity.cs
- FontFamily.cs
- TimeSpan.cs
- PerspectiveCamera.cs
- MetadataProperty.cs
- TreeViewAutomationPeer.cs
- wgx_sdk_version.cs
- RuntimeVariableList.cs
- VScrollProperties.cs
- MarkupObject.cs
- DoubleAnimation.cs
- safelink.cs
- SymLanguageVendor.cs
- OutputCacheModule.cs
- ZipIOBlockManager.cs
- AutomationEventArgs.cs
- DataSourceConverter.cs
- DictionaryEntry.cs
- HostProtectionException.cs
- wgx_exports.cs
- HotSpot.cs
- ExcCanonicalXml.cs
- ProjectedWrapper.cs
- Tile.cs
- StringComparer.cs
- DataGridViewColumnEventArgs.cs
- ThousandthOfEmRealPoints.cs
- TabItemAutomationPeer.cs
- AccessibleObject.cs
- connectionpool.cs
- CurrentChangedEventManager.cs
- HashCodeCombiner.cs
- AsyncDataRequest.cs
- XmlAutoDetectWriter.cs
- RoutedEventArgs.cs
- ScriptingSectionGroup.cs
- ClassData.cs
- StrokeCollectionConverter.cs
- EditingCoordinator.cs
- DataSourceView.cs
- ContextMarshalException.cs
- TabControlToolboxItem.cs
- FontSource.cs
- WorkflowApplicationException.cs
- Decorator.cs
- Trace.cs
- Symbol.cs
- ElementHostAutomationPeer.cs