Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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); } } } // 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 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
- GridViewRow.cs
- OracleCommandSet.cs
- ActiveXHelper.cs
- DataServiceResponse.cs
- UrlPath.cs
- SchemaConstraints.cs
- Rect3D.cs
- FillRuleValidation.cs
- QueuePathDialog.cs
- DragDeltaEventArgs.cs
- WebServiceHandlerFactory.cs
- Peer.cs
- ReturnEventArgs.cs
- ObjectDataSourceStatusEventArgs.cs
- SQLDoubleStorage.cs
- ZipIOFileItemStream.cs
- iisPickupDirectory.cs
- EventToken.cs
- ContextBase.cs
- DesignerAutoFormat.cs
- EastAsianLunisolarCalendar.cs
- SystemInfo.cs
- GetWorkflowTree.cs
- HtmlElementCollection.cs
- SqlMethodCallConverter.cs
- ComNativeDescriptor.cs
- SecurityChannel.cs
- NamespaceInfo.cs
- GraphicsContainer.cs
- TemplateControlCodeDomTreeGenerator.cs
- SystemInformation.cs
- XomlCompilerError.cs
- QilReference.cs
- GestureRecognitionResult.cs
- MemberInfoSerializationHolder.cs
- DataGridViewCellPaintingEventArgs.cs
- Pair.cs
- DrawingAttributes.cs
- BCLDebug.cs
- EmptyCollection.cs
- ObjectListSelectEventArgs.cs
- BaseValidator.cs
- TextTreeNode.cs
- BidPrivateBase.cs
- ListViewItemSelectionChangedEvent.cs
- KeyGestureValueSerializer.cs
- MatrixCamera.cs
- DataPagerFieldCommandEventArgs.cs
- TemplateBuilder.cs
- UserControl.cs
- InlineObject.cs
- WebRequestModulesSection.cs
- RoutedCommand.cs
- BindingList.cs
- MarshalDirectiveException.cs
- x509utils.cs
- ReaderContextStackData.cs
- DataControlFieldTypeEditor.cs
- TableStyle.cs
- QilCloneVisitor.cs
- Vector3D.cs
- RangeContentEnumerator.cs
- ParserContext.cs
- ManagementObjectSearcher.cs
- HtmlInputText.cs
- SqlRewriteScalarSubqueries.cs
- WorkItem.cs
- WindowHideOrCloseTracker.cs
- ReturnValue.cs
- PresentationSource.cs
- Light.cs
- MarshalByValueComponent.cs
- SamlAttributeStatement.cs
- RemoteWebConfigurationHostStream.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- TypedTableBase.cs
- RunInstallerAttribute.cs
- ACE.cs
- CodeFieldReferenceExpression.cs
- ProcessProtocolHandler.cs
- ClientOperationFormatterProvider.cs
- PrimitiveType.cs
- BinaryObjectReader.cs
- CancelEventArgs.cs
- XmlMemberMapping.cs
- ConnectionOrientedTransportChannelListener.cs
- HttpCacheParams.cs
- PageVisual.cs
- Point3DIndependentAnimationStorage.cs
- MultiView.cs
- Int32Rect.cs
- TerminatorSinks.cs
- TextSpan.cs
- BaseValidator.cs
- MeshGeometry3D.cs
- Pts.cs
- RequiredFieldValidator.cs
- IndexerNameAttribute.cs
- GlyphingCache.cs
- FormViewPageEventArgs.cs