Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / CodeDOM / CodeStatementCollection.cs / 1 / CodeStatementCollection.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 CodeStatementCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeStatementCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeStatementCollection(CodeStatementCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeStatementCollection(CodeStatement[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeStatement this[int index] {
get {
return ((CodeStatement)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeStatement value) {
return List.Add(value);
}
///
/// [To be supplied.]
///
public int Add(CodeExpression value) {
return Add(new CodeExpressionStatement(value));
}
///
/// Copies the elements of an array to the end of the .
///
public void AddRange(CodeStatement[] 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(CodeStatementCollection 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(CodeStatement value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeStatement[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeStatement value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeStatement value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeStatement 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 CodeStatementCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CodeStatementCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CodeStatementCollection(CodeStatementCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CodeStatementCollection(CodeStatement[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CodeStatement this[int index] {
get {
return ((CodeStatement)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CodeStatement value) {
return List.Add(value);
}
///
/// [To be supplied.]
///
public int Add(CodeExpression value) {
return Add(new CodeExpressionStatement(value));
}
///
/// Copies the elements of an array to the end of the .
///
public void AddRange(CodeStatement[] 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(CodeStatementCollection 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(CodeStatement value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CodeStatement[] array, int index) {
List.CopyTo(array, index);
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CodeStatement value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CodeStatement value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CodeStatement 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
- _ReceiveMessageOverlappedAsyncResult.cs
- MonthCalendarDesigner.cs
- DocumentGridContextMenu.cs
- HitTestParameters3D.cs
- Literal.cs
- XamlRtfConverter.cs
- DeviceContexts.cs
- XmlLanguage.cs
- documentsequencetextpointer.cs
- OlePropertyStructs.cs
- AddInControllerImpl.cs
- BindingContext.cs
- BooleanSwitch.cs
- EditorPart.cs
- MenuTracker.cs
- QilName.cs
- WebResponse.cs
- FixedSOMTableCell.cs
- CalendarDataBindingHandler.cs
- TimeSpan.cs
- HelpProvider.cs
- HtmlSelect.cs
- FixedSOMTable.cs
- ColumnWidthChangedEvent.cs
- SuppressMessageAttribute.cs
- ScriptDescriptor.cs
- FontFaceLayoutInfo.cs
- Attributes.cs
- TCEAdapterGenerator.cs
- WebRequestModulesSection.cs
- BasicDesignerLoader.cs
- ObjectRef.cs
- WeakReference.cs
- WindowsAuthenticationModule.cs
- FieldAccessException.cs
- FixedSOMContainer.cs
- precedingquery.cs
- ExceptionValidationRule.cs
- ArgumentOutOfRangeException.cs
- InputLangChangeRequestEvent.cs
- BinaryFormatter.cs
- SecurityState.cs
- UICuesEvent.cs
- SerializableTypeCodeDomSerializer.cs
- TdsParserSafeHandles.cs
- PageDeviceFont.cs
- SizeAnimation.cs
- DataListItem.cs
- ContentPathSegment.cs
- IsolatedStorageException.cs
- AudioDeviceOut.cs
- DataBindEngine.cs
- MasterPageBuildProvider.cs
- ApplicationTrust.cs
- SplashScreenNativeMethods.cs
- FatalException.cs
- FieldToken.cs
- FilteredDataSetHelper.cs
- SoapAttributeOverrides.cs
- SessionPageStateSection.cs
- UInt64Converter.cs
- ColumnResizeUndoUnit.cs
- SR.cs
- CodeStatement.cs
- TogglePattern.cs
- SqlNotificationRequest.cs
- HijriCalendar.cs
- UnsafeNativeMethods.cs
- CompilerError.cs
- XmlSchemaSimpleTypeList.cs
- EventDescriptorCollection.cs
- ChtmlLinkAdapter.cs
- XmlEventCache.cs
- DocumentPageView.cs
- WMIGenerator.cs
- AsymmetricKeyExchangeFormatter.cs
- MessageBox.cs
- StaticDataManager.cs
- EncodingInfo.cs
- TextUtf8RawTextWriter.cs
- SocketAddress.cs
- ShapeTypeface.cs
- PhysicalFontFamily.cs
- DescendentsWalkerBase.cs
- FixedFlowMap.cs
- While.cs
- RootBrowserWindowAutomationPeer.cs
- ScrollViewer.cs
- ParenthesizePropertyNameAttribute.cs
- CommandBindingCollection.cs
- SessionSwitchEventArgs.cs
- ReverseInheritProperty.cs
- OdbcStatementHandle.cs
- Hash.cs
- InfoCardTraceRecord.cs
- IgnoreSection.cs
- WebEvents.cs
- DefaultValueConverter.cs
- DTCTransactionManager.cs
- TableRowGroupCollection.cs