Code:
/ FX-1434 / FX-1434 / 1.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
- Propagator.JoinPropagator.cs
- FileUtil.cs
- SQLCharsStorage.cs
- followingquery.cs
- ParameterReplacerVisitor.cs
- GroupItemAutomationPeer.cs
- DoubleStorage.cs
- SmiRequestExecutor.cs
- AnnotationHelper.cs
- Attributes.cs
- ListViewGroupItemCollection.cs
- ToolBarDesigner.cs
- x509store.cs
- Point.cs
- DataGridHyperlinkColumn.cs
- XmlTextReaderImplHelpers.cs
- WebPartVerbsEventArgs.cs
- DesignBindingPicker.cs
- OperationGenerator.cs
- Emitter.cs
- WebHeaderCollection.cs
- CommandHelper.cs
- TextContainerChangeEventArgs.cs
- PassportAuthentication.cs
- mda.cs
- ILGenerator.cs
- UnaryNode.cs
- ToolBarPanel.cs
- ContentPlaceHolder.cs
- WebPartDescription.cs
- recordstatefactory.cs
- PropertyDescriptor.cs
- KeyValueSerializer.cs
- ListViewSelectEventArgs.cs
- ThreadAttributes.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- Utils.cs
- CustomSignedXml.cs
- DataFieldCollectionEditor.cs
- MetadataArtifactLoaderCompositeResource.cs
- MemoryMappedFileSecurity.cs
- HtmlTableRowCollection.cs
- StorageRoot.cs
- AdornerHitTestResult.cs
- SmiMetaData.cs
- HGlobalSafeHandle.cs
- ListViewItemSelectionChangedEvent.cs
- TCEAdapterGenerator.cs
- RijndaelManagedTransform.cs
- XPathNode.cs
- RemotingAttributes.cs
- KeyedQueue.cs
- XsltContext.cs
- ExpressionStringBuilder.cs
- ProcessThread.cs
- DocumentApplicationJournalEntry.cs
- ProcessThread.cs
- Span.cs
- Input.cs
- Utils.cs
- TracedNativeMethods.cs
- DataGridAddNewRow.cs
- FileDialogCustomPlace.cs
- BaseInfoTable.cs
- SHA512.cs
- XmlSchemaInclude.cs
- HandlerWithFactory.cs
- AccessDataSourceView.cs
- SecurityUtils.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- GroupBoxDesigner.cs
- HtmlValidatorAdapter.cs
- SecurityTokenException.cs
- DataServiceRequestOfT.cs
- PolicyImporterElement.cs
- ResourceReferenceExpression.cs
- SpeakCompletedEventArgs.cs
- SymbolEqualComparer.cs
- Ports.cs
- SRGSCompiler.cs
- _SslState.cs
- UnicastIPAddressInformationCollection.cs
- sitestring.cs
- RadialGradientBrush.cs
- ResourceReader.cs
- ArrangedElement.cs
- Color.cs
- OdbcException.cs
- DerivedKeyCachingSecurityTokenSerializer.cs
- BStrWrapper.cs
- WinCategoryAttribute.cs
- EventArgs.cs
- ViewStateException.cs
- CTreeGenerator.cs
- BindingBase.cs
- CommonDialog.cs
- SocketStream.cs
- InputScope.cs
- TextBoxAutomationPeer.cs
- Sql8ExpressionRewriter.cs