Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / CodeExpressionCollection.cs / 1 / CodeExpressionCollection.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 CodeExpressionCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeExpressionCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeExpressionCollection(CodeExpressionCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeExpressionCollection(CodeExpression[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeExpression this[int index] {
get {
return ((CodeExpression)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeExpression value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of the .
///
public void AddRange(CodeExpression[] 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(CodeExpressionCollection 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(CodeExpression value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeExpression[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeExpression value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeExpression value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeExpression 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 CodeExpressionCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeExpressionCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeExpressionCollection(CodeExpressionCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeExpressionCollection(CodeExpression[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeExpression this[int index] {
get {
return ((CodeExpression)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeExpression value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of the .
///
public void AddRange(CodeExpression[] 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(CodeExpressionCollection 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(CodeExpression value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeExpression[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeExpression value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeExpression value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeExpression 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
- DBCSCodePageEncoding.cs
- ContentOperations.cs
- HtmlShim.cs
- EdmComplexTypeAttribute.cs
- DataControlFieldHeaderCell.cs
- Table.cs
- ToolStripSystemRenderer.cs
- StateFinalizationDesigner.cs
- TypeDependencyAttribute.cs
- ItemAutomationPeer.cs
- AlphaSortedEnumConverter.cs
- PageHandlerFactory.cs
- __ConsoleStream.cs
- DataGridViewSelectedColumnCollection.cs
- GeneralTransform3D.cs
- SqlDataReaderSmi.cs
- WsatServiceCertificate.cs
- SwitchAttribute.cs
- categoryentry.cs
- ArglessEventHandlerProxy.cs
- VirtualizedItemProviderWrapper.cs
- TableLayoutStyleCollection.cs
- ListComponentEditor.cs
- HtmlLiteralTextAdapter.cs
- connectionpool.cs
- SiteMapDataSource.cs
- Error.cs
- EncryptedData.cs
- SourceElementsCollection.cs
- TreeViewImageKeyConverter.cs
- NetworkAddressChange.cs
- HttpModulesSection.cs
- InkCanvasSelection.cs
- MatrixTransform.cs
- ButtonColumn.cs
- Brush.cs
- ToolboxItemCollection.cs
- XmlNamedNodeMap.cs
- ForceCopyBuildProvider.cs
- PerfService.cs
- StylesEditorDialog.cs
- KeyValueConfigurationCollection.cs
- AnnotationService.cs
- RowToParametersTransformer.cs
- StickyNoteHelper.cs
- XsdCachingReader.cs
- ExpressionConverter.cs
- NaturalLanguageHyphenator.cs
- SystemWebSectionGroup.cs
- ProfilePropertyNameValidator.cs
- BookmarkOptionsHelper.cs
- ScriptHandlerFactory.cs
- MultiDataTrigger.cs
- EventMemberCodeDomSerializer.cs
- WebExceptionStatus.cs
- XsltContext.cs
- EventSinkHelperWriter.cs
- SecureConversationServiceElement.cs
- MessageQuerySet.cs
- TextEditorTyping.cs
- SimpleMailWebEventProvider.cs
- ResourceContainerWrapper.cs
- UnsafeCollabNativeMethods.cs
- DataServiceKeyAttribute.cs
- LabelEditEvent.cs
- DateTimeValueSerializer.cs
- WindowsSysHeader.cs
- GroupByExpressionRewriter.cs
- ComplexPropertyEntry.cs
- DesignerLoader.cs
- WebPartUtil.cs
- followingquery.cs
- MemoryMappedViewAccessor.cs
- BitmapMetadata.cs
- GifBitmapDecoder.cs
- ACE.cs
- JsonReader.cs
- Vector3D.cs
- FontUnit.cs
- IriParsingElement.cs
- Effect.cs
- MutexSecurity.cs
- MemberNameValidator.cs
- _NativeSSPI.cs
- ZipPackage.cs
- StylusPointPropertyId.cs
- TcpChannelHelper.cs
- RijndaelManaged.cs
- ValueType.cs
- TemplateXamlParser.cs
- DbConnectionStringCommon.cs
- ConfigErrorGlyph.cs
- ConvertersCollection.cs
- LinqDataSourceDeleteEventArgs.cs
- ObjectStateEntryDbDataRecord.cs
- HttpProxyTransportBindingElement.cs
- VScrollBar.cs
- TypedElement.cs
- FloatUtil.cs
- OutputCacheEntry.cs