Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / CodeDOM / CodeIndexerExpression.cs / 1 / CodeIndexerExpression.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeIndexerExpression : CodeExpression { private CodeExpression targetObject; private CodeExpressionCollection indices; ////// Represents an array indexer expression. /// ////// public CodeIndexerExpression() { } ////// Initializes a new instance of ///. /// /// public CodeIndexerExpression(CodeExpression targetObject, params CodeExpression[] indices) { this.targetObject = targetObject; this.indices = new CodeExpressionCollection(); this.indices.AddRange(indices); } ////// Initializes a new instance of ///using the specified target /// object and index. /// /// public CodeExpression TargetObject { get { return targetObject; } set { targetObject = value; } } ////// Gets or sets /// the target object. /// ////// public CodeExpressionCollection Indices { get { if (indices == null) { indices = new CodeExpressionCollection(); } return indices; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets /// the index. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeIndexerExpression : CodeExpression { private CodeExpression targetObject; private CodeExpressionCollection indices; ////// Represents an array indexer expression. /// ////// public CodeIndexerExpression() { } ////// Initializes a new instance of ///. /// /// public CodeIndexerExpression(CodeExpression targetObject, params CodeExpression[] indices) { this.targetObject = targetObject; this.indices = new CodeExpressionCollection(); this.indices.AddRange(indices); } ////// Initializes a new instance of ///using the specified target /// object and index. /// /// public CodeExpression TargetObject { get { return targetObject; } set { targetObject = value; } } ////// Gets or sets /// the target object. /// ////// public CodeExpressionCollection Indices { get { if (indices == null) { indices = new CodeExpressionCollection(); } return indices; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets /// the index. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectAssociationEndMapping.cs
- ToolStripContainer.cs
- Separator.cs
- ValidatedControlConverter.cs
- DataRecord.cs
- ObjectCloneHelper.cs
- DataGridViewCellLinkedList.cs
- ParserExtension.cs
- WebPartCloseVerb.cs
- LineUtil.cs
- HMACSHA1.cs
- RelationshipEntry.cs
- ButtonBaseAdapter.cs
- WebBrowsableAttribute.cs
- FirstMatchCodeGroup.cs
- SiteMapNodeCollection.cs
- CollectionViewGroup.cs
- Int64AnimationUsingKeyFrames.cs
- ForwardPositionQuery.cs
- DataGridView.cs
- AbstractDataSvcMapFileLoader.cs
- RectangleHotSpot.cs
- InputReportEventArgs.cs
- PropertyFilterAttribute.cs
- HandledEventArgs.cs
- PixelShader.cs
- ToolStripPanel.cs
- XmlTextWriter.cs
- TypeDescriptionProvider.cs
- MetafileHeaderWmf.cs
- SharedRuntimeState.cs
- ListChangedEventArgs.cs
- tibetanshape.cs
- SafeCryptoHandles.cs
- TdsEnums.cs
- ObjectDataSourceSelectingEventArgs.cs
- HandlerBase.cs
- AuthenticatingEventArgs.cs
- UInt16Storage.cs
- HttpCookiesSection.cs
- SQLInt32Storage.cs
- Matrix3D.cs
- DriveNotFoundException.cs
- AxHostDesigner.cs
- ClientScriptItem.cs
- PerformanceCounterCategory.cs
- JsonSerializer.cs
- FatalException.cs
- DoubleLink.cs
- LinkDescriptor.cs
- COAUTHIDENTITY.cs
- WebPartTransformerAttribute.cs
- xdrvalidator.cs
- GeometryHitTestParameters.cs
- IsolatedStoragePermission.cs
- ConstraintManager.cs
- QueryOutputWriter.cs
- x509store.cs
- AbandonedMutexException.cs
- ParentUndoUnit.cs
- EntityContainerEntitySetDefiningQuery.cs
- ComponentChangingEvent.cs
- PermissionListSet.cs
- _FixedSizeReader.cs
- BuildResultCache.cs
- WebConfigurationFileMap.cs
- MetadataHelper.cs
- ColorConverter.cs
- SiteOfOriginContainer.cs
- TreeNode.cs
- ApplicationException.cs
- CertificateManager.cs
- SignedPkcs7.cs
- EventHandlersStore.cs
- EventSetterHandlerConverter.cs
- BinHexEncoder.cs
- StreamingContext.cs
- WebPartMenu.cs
- Vector3D.cs
- MSHTMLHostUtil.cs
- DataViewManagerListItemTypeDescriptor.cs
- IsolatedStorage.cs
- BinaryFormatterWriter.cs
- DocumentXPathNavigator.cs
- XmlEntityReference.cs
- ModelFunction.cs
- AttributeConverter.cs
- RequestCacheManager.cs
- Transaction.cs
- DocumentPageView.cs
- WindowsTokenRoleProvider.cs
- SqlFactory.cs
- WebResourceAttribute.cs
- _SslSessionsCache.cs
- ContextMenu.cs
- DateTimeOffsetConverter.cs
- TemplatePagerField.cs
- ComponentDispatcherThread.cs
- TypeValidationEventArgs.cs
- URI.cs