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; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeStatementCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeStatementCollection() { } ////// Initializes a new instance of ///. /// /// public CodeStatementCollection(CodeStatementCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeStatementCollection(CodeStatement[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeStatement this[int index] { get { return ((CodeStatement)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeStatement value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public int Add(CodeExpression value) { return Add(new CodeExpressionStatement(value)); } ///[To be supplied.] ////// 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]); } } ///Copies the elements of an array to the end of the ///. /// 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]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CodeStatement value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeStatement[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeStatement value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeStatement value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeStatement value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ------------------------------------------------------------------------------ //Removes a specific ///from the /// . // 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 CodeStatementCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeStatementCollection() { } ////// Initializes a new instance of ///. /// /// public CodeStatementCollection(CodeStatementCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeStatementCollection(CodeStatement[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeStatement this[int index] { get { return ((CodeStatement)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeStatement value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public int Add(CodeExpression value) { return Add(new CodeExpressionStatement(value)); } ///[To be supplied.] ////// 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]); } } ///Copies the elements of an array to the end of the ///. /// 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]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CodeStatement value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeStatement[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeStatement value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeStatement value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeStatement value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AutomationAttributeInfo.cs
- MulticastDelegate.cs
- coordinatorscratchpad.cs
- ChangePasswordAutoFormat.cs
- Int64AnimationBase.cs
- ConnectionStringsSection.cs
- SamlAssertionKeyIdentifierClause.cs
- LoginName.cs
- DataGridRow.cs
- bidPrivateBase.cs
- RawTextInputReport.cs
- CheckableControlBaseAdapter.cs
- BamlTreeMap.cs
- PopOutPanel.cs
- Light.cs
- ComboBoxRenderer.cs
- MsmqAppDomainProtocolHandler.cs
- SmiSettersStream.cs
- AlgoModule.cs
- XmlDocumentViewSchema.cs
- EmbeddedMailObject.cs
- OracleDataReader.cs
- TouchDevice.cs
- XhtmlBasicImageAdapter.cs
- AspNetSynchronizationContext.cs
- WebException.cs
- Certificate.cs
- SQLMoney.cs
- DocumentGridPage.cs
- Typeface.cs
- StrokeNodeOperations.cs
- MarkupExtensionReturnTypeAttribute.cs
- DNS.cs
- UnionExpr.cs
- GetParentChain.cs
- ThreadAbortException.cs
- InstalledVoice.cs
- SymbolDocumentGenerator.cs
- WebPartCatalogAddVerb.cs
- SqlDataSourceDesigner.cs
- SourceFilter.cs
- ContentOperations.cs
- CompilerState.cs
- SqlParameterizer.cs
- TcpActivation.cs
- StringFunctions.cs
- CompModSwitches.cs
- FlowLayoutPanel.cs
- WindowsClientElement.cs
- RectAnimationBase.cs
- XmlQualifiedName.cs
- Emitter.cs
- UnmanagedBitmapWrapper.cs
- ExtendedProtectionPolicyElement.cs
- TargetPerspective.cs
- DataGridViewRowsRemovedEventArgs.cs
- WorkflowFormatterBehavior.cs
- SafeNativeMethods.cs
- XmlDocumentSerializer.cs
- Exception.cs
- CmsInterop.cs
- DefaultPropertyAttribute.cs
- Debugger.cs
- CompiledIdentityConstraint.cs
- ReversePositionQuery.cs
- InfoCardMasterKey.cs
- InfoCardSchemas.cs
- RtfFormatStack.cs
- LocalizationCodeDomSerializer.cs
- CancellableEnumerable.cs
- CompositeFontFamily.cs
- DbProviderConfigurationHandler.cs
- XmlILAnnotation.cs
- PropertyInfo.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- FrameworkObject.cs
- TreeNodeConverter.cs
- TypeUnloadedException.cs
- ConfigDefinitionUpdates.cs
- XDRSchema.cs
- RectangleGeometry.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- GPRECT.cs
- CompositeTypefaceMetrics.cs
- XmlDictionaryReaderQuotas.cs
- SignedInfo.cs
- StreamAsIStream.cs
- PowerStatus.cs
- AppDomainAttributes.cs
- ProtocolsConfigurationHandler.cs
- DateTimeAutomationPeer.cs
- CLRBindingWorker.cs
- DummyDataSource.cs
- InstanceLockQueryResult.cs
- SchemaNamespaceManager.cs
- LocatorGroup.cs
- EventLogPermissionEntry.cs
- OdbcParameterCollection.cs
- XamlWriter.cs
- MsmqIntegrationOutputChannel.cs