Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable() ] public class CodeExpressionCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeExpressionCollection() { } ////// Initializes a new instance of ///. /// /// public CodeExpressionCollection(CodeExpressionCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeExpressionCollection(CodeExpression[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeExpression this[int index] { get { return ((CodeExpression)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeExpression value) { return List.Add(value); } ///Adds a ///with the specified value to 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]); } } ///Copies the elements of an array to the end of the ///. /// 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]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CodeExpression value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeExpression[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeExpression value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeExpression value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeExpression value) { List.Remove(value); } } }Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DragStartedEventArgs.cs
- OrderToken.cs
- AsmxEndpointPickerExtension.cs
- ResourceWriter.cs
- HtmlTextArea.cs
- JumpItem.cs
- Parallel.cs
- SystemFonts.cs
- UniqueIdentifierService.cs
- AuthenticationModuleElement.cs
- SecurityState.cs
- SafeTokenHandle.cs
- MenuCommandService.cs
- SmtpFailedRecipientException.cs
- FilteredReadOnlyMetadataCollection.cs
- BitmapEffect.cs
- EventProvider.cs
- CodeAttachEventStatement.cs
- UnsafeNativeMethods.cs
- FormsIdentity.cs
- panel.cs
- PriorityItem.cs
- documentsequencetextview.cs
- StringUtil.cs
- AccessViolationException.cs
- SmiEventSink_DeferedProcessing.cs
- MemberPathMap.cs
- HandoffBehavior.cs
- PrimitiveSchema.cs
- HtmlElementCollection.cs
- XmlSchemaSet.cs
- QueryContinueDragEventArgs.cs
- CommandField.cs
- HtmlShimManager.cs
- Attributes.cs
- SQLDoubleStorage.cs
- CollectionConverter.cs
- WebColorConverter.cs
- UserControlDesigner.cs
- ActiveXHost.cs
- MailWriter.cs
- StateManagedCollection.cs
- AsyncOperationContext.cs
- RadioButtonAutomationPeer.cs
- ResourceWriter.cs
- StylusLogic.cs
- HtmlInputCheckBox.cs
- Group.cs
- WebContentFormatHelper.cs
- Funcletizer.cs
- RankException.cs
- _NegoState.cs
- GenericAuthenticationEventArgs.cs
- Propagator.ExtentPlaceholderCreator.cs
- MultiTargetingUtil.cs
- ParameterModifier.cs
- ScrollableControl.cs
- InfoCardArgumentException.cs
- PixelFormat.cs
- BitmapMetadata.cs
- ErrorWebPart.cs
- FreezableDefaultValueFactory.cs
- HierarchicalDataTemplate.cs
- AdRotator.cs
- CodeDomLocalizationProvider.cs
- DataGridCellAutomationPeer.cs
- DesignOnlyAttribute.cs
- SqlGatherConsumedAliases.cs
- JsonReaderDelegator.cs
- WindowsGraphicsCacheManager.cs
- RunInstallerAttribute.cs
- HttpClientCertificate.cs
- TemplateControlBuildProvider.cs
- TokenizerHelper.cs
- SecureConversationDriver.cs
- ColumnCollection.cs
- HtmlTernaryTree.cs
- Font.cs
- Style.cs
- ExpandButtonVisibilityConverter.cs
- EdmProperty.cs
- KeyInfo.cs
- QuaternionKeyFrameCollection.cs
- InputBinding.cs
- TextElement.cs
- PropertyChange.cs
- SqlVisitor.cs
- ContextMenu.cs
- OperandQuery.cs
- AsymmetricCryptoHandle.cs
- CompensatableTransactionScopeActivityDesigner.cs
- ColorMap.cs
- GPRECT.cs
- CheckBoxRenderer.cs
- ConversionContext.cs
- FontInfo.cs
- TaskDesigner.cs
- SerializationAttributes.cs
- DecoderFallback.cs
- QueryCacheEntry.cs