Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeStatementCollection.cs / 1305376 / 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
- SyndicationCategory.cs
- WCFServiceClientProxyGenerator.cs
- WindowsTreeView.cs
- BrushConverter.cs
- PresentationAppDomainManager.cs
- XamlInt32CollectionSerializer.cs
- MonikerProxyAttribute.cs
- AssemblyAttributes.cs
- WindowsToolbarAsMenu.cs
- SolidColorBrush.cs
- linebase.cs
- WebControl.cs
- UTF32Encoding.cs
- GenerateTemporaryTargetAssembly.cs
- ContextProperty.cs
- StringConcat.cs
- TreeNodeClickEventArgs.cs
- SqlXml.cs
- SubclassTypeValidator.cs
- FormsAuthenticationUserCollection.cs
- Comparer.cs
- BoolExpression.cs
- SecurityManager.cs
- PlainXmlWriter.cs
- ItemType.cs
- Geometry.cs
- filewebresponse.cs
- RoamingStoreFileUtility.cs
- LayoutTableCell.cs
- ValueExpressions.cs
- DataControlButton.cs
- PersonalizationStateInfo.cs
- ExpressionWriter.cs
- AdRotator.cs
- LocalizedNameDescriptionPair.cs
- AndCondition.cs
- CustomErrorCollection.cs
- SpnegoTokenProvider.cs
- SQLBytesStorage.cs
- StoreItemCollection.cs
- ChtmlTextWriter.cs
- SystemIPInterfaceStatistics.cs
- TextBoxBase.cs
- BoolExpr.cs
- MarkupProperty.cs
- ListControlActionList.cs
- ResourceDefaultValueAttribute.cs
- SortKey.cs
- TextCollapsingProperties.cs
- BuildProvidersCompiler.cs
- RoleManagerEventArgs.cs
- EncoderReplacementFallback.cs
- WebRequestModulesSection.cs
- httpstaticobjectscollection.cs
- TreeViewDesigner.cs
- ResourceDictionary.cs
- QueryableFilterUserControl.cs
- HtmlTextArea.cs
- SimpleLine.cs
- XmlSchemaAny.cs
- SqlUtils.cs
- SurrogateChar.cs
- Decimal.cs
- XPathAncestorIterator.cs
- ImageFormat.cs
- SqlBuilder.cs
- IndexOutOfRangeException.cs
- ActivationProxy.cs
- DataDocumentXPathNavigator.cs
- SchemaRegistration.cs
- EventBindingService.cs
- SystemBrushes.cs
- InfoCardAsymmetricCrypto.cs
- ProxyWebPartConnectionCollection.cs
- ImageSourceConverter.cs
- NetworkInterface.cs
- NodeFunctions.cs
- PerfCounters.cs
- RijndaelManagedTransform.cs
- MdImport.cs
- EventProviderWriter.cs
- XmlIlGenerator.cs
- MouseDevice.cs
- XNodeValidator.cs
- DynamicObject.cs
- NavigationExpr.cs
- XamlWriter.cs
- NameScopePropertyAttribute.cs
- LookupTables.cs
- TriState.cs
- AuthenticationModuleElement.cs
- ResumeStoryboard.cs
- xmlfixedPageInfo.cs
- Style.cs
- AliasGenerator.cs
- ProxyGenerator.cs
- ButtonChrome.cs
- PenLineCapValidation.cs
- ModuleBuilderData.cs
- AutoResizedEvent.cs