Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeExpressionCollection.cs / 1305376 / CodeExpressionCollection.cs
// ------------------------------------------------------------------------------ //// // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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); } } } // 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
- HwndTarget.cs
- CachedCompositeFamily.cs
- RegisteredHiddenField.cs
- CfgParser.cs
- PartialCachingAttribute.cs
- BaseDataList.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- IIS7ConfigurationLoader.cs
- dtdvalidator.cs
- PropertyInformationCollection.cs
- TreeViewBindingsEditor.cs
- FactoryGenerator.cs
- ParenExpr.cs
- DoubleCollectionValueSerializer.cs
- ExpressionParser.cs
- ConnectionsZoneDesigner.cs
- ACE.cs
- SerializationEventsCache.cs
- ColumnHeader.cs
- ClientUtils.cs
- TypeGeneratedEventArgs.cs
- RankException.cs
- _Win32.cs
- MinimizableAttributeTypeConverter.cs
- CodeStatementCollection.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- XmlBinaryReader.cs
- Section.cs
- Boolean.cs
- FixedMaxHeap.cs
- HijriCalendar.cs
- ManipulationDevice.cs
- Zone.cs
- ContentPlaceHolderDesigner.cs
- httpserverutility.cs
- ProxyHwnd.cs
- CompoundFileStorageReference.cs
- TraceSwitch.cs
- LiteralControl.cs
- BaseAppDomainProtocolHandler.cs
- TreeNode.cs
- SlipBehavior.cs
- TraceShell.cs
- XmlWrappingReader.cs
- SafeFileMappingHandle.cs
- HttpHandlersSection.cs
- StringHelper.cs
- XmlSignatureManifest.cs
- ADMembershipProvider.cs
- LinkButton.cs
- MessageLogger.cs
- OdbcCommandBuilder.cs
- SpAudioStreamWrapper.cs
- AppDomainUnloadedException.cs
- CSharpCodeProvider.cs
- CellLabel.cs
- StylusPointPropertyId.cs
- VirtualPathUtility.cs
- UserControl.cs
- Filter.cs
- EFAssociationProvider.cs
- WorkflowQueue.cs
- ListViewTableCell.cs
- FontClient.cs
- NumericPagerField.cs
- TabControlCancelEvent.cs
- CompiledIdentityConstraint.cs
- DocumentViewer.cs
- DateTimeConverter2.cs
- DebugManager.cs
- Configuration.cs
- _WinHttpWebProxyDataBuilder.cs
- WorkflowRuntimeSection.cs
- WaitHandleCannotBeOpenedException.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- Int16Animation.cs
- ImageDrawing.cs
- VBCodeProvider.cs
- ResizingMessageFilter.cs
- CfgRule.cs
- ListViewTableRow.cs
- BreakRecordTable.cs
- FastEncoder.cs
- CmsInterop.cs
- ReliabilityContractAttribute.cs
- DataFormats.cs
- PermissionSet.cs
- RemoveStoryboard.cs
- TransactionFlowProperty.cs
- Array.cs
- ListenerConnectionDemuxer.cs
- CollaborationHelperFunctions.cs
- DbCommandDefinition.cs
- DependencyObjectProvider.cs
- CombinedGeometry.cs
- BlockCollection.cs
- OdbcConnectionFactory.cs
- CounterSampleCalculator.cs
- ImageConverter.cs
- HtmlLink.cs