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
- SoapIncludeAttribute.cs
- NativeRecognizer.cs
- ConstraintStruct.cs
- MsmqIntegrationProcessProtocolHandler.cs
- contentDescriptor.cs
- DataRowView.cs
- ListParagraph.cs
- ShadowGlyph.cs
- SHA1Cng.cs
- StringFreezingAttribute.cs
- DocumentGridPage.cs
- DPCustomTypeDescriptor.cs
- UpWmlPageAdapter.cs
- RMEnrollmentPage1.cs
- CopyAction.cs
- COAUTHIDENTITY.cs
- HyperlinkAutomationPeer.cs
- TracedNativeMethods.cs
- AutoSizeComboBox.cs
- ValidatedControlConverter.cs
- QueryGenerator.cs
- ProbeRequestResponseAsyncResult.cs
- XPathAncestorIterator.cs
- log.cs
- IssuedTokenParametersEndpointAddressElement.cs
- UnlockCardRequest.cs
- UserControlParser.cs
- ProvidersHelper.cs
- DynamicMethod.cs
- InkCanvas.cs
- SortedList.cs
- SchemaImporter.cs
- NativeRecognizer.cs
- PageTextBox.cs
- EditorZoneBase.cs
- XmlSchemaSequence.cs
- DataPagerField.cs
- BaseDataList.cs
- XmlSchemaAttributeGroupRef.cs
- DiffuseMaterial.cs
- PeerToPeerException.cs
- ModifiableIteratorCollection.cs
- DeflateStreamAsyncResult.cs
- AsyncCompletedEventArgs.cs
- ThreadAttributes.cs
- Variant.cs
- CachedFontFamily.cs
- DataGridViewHeaderCell.cs
- Comparer.cs
- DesignerActionVerbList.cs
- MemoryStream.cs
- CompositeActivityDesigner.cs
- __Filters.cs
- KeyedCollection.cs
- SQLStringStorage.cs
- ApplicationServiceManager.cs
- ListItemParagraph.cs
- MetadataUtil.cs
- Rethrow.cs
- GuidelineCollection.cs
- ZipIOExtraFieldPaddingElement.cs
- DBCSCodePageEncoding.cs
- RootBuilder.cs
- NativeRightsManagementAPIsStructures.cs
- SqlOuterApplyReducer.cs
- EntityViewContainer.cs
- NameSpaceExtractor.cs
- TreeNodeStyleCollectionEditor.cs
- EntryIndex.cs
- Rect.cs
- Inflater.cs
- OneOf.cs
- DependencyPropertyDescriptor.cs
- DataGridRelationshipRow.cs
- UserControlParser.cs
- StreamAsIStream.cs
- Mapping.cs
- CorrelationHandle.cs
- DataGridRowAutomationPeer.cs
- SqlFacetAttribute.cs
- FtpWebRequest.cs
- DataTableReader.cs
- UdpDiscoveryMessageFilter.cs
- LazyLoadBehavior.cs
- SeverityFilter.cs
- ConnectionInterfaceCollection.cs
- Page.cs
- DataGridViewRowsRemovedEventArgs.cs
- DivideByZeroException.cs
- MetadataSerializer.cs
- MenuAutomationPeer.cs
- Button.cs
- BitmapEffectInput.cs
- DistinctQueryOperator.cs
- SqlMetaData.cs
- CultureSpecificStringDictionary.cs
- EntityClassGenerator.cs
- HostingEnvironmentWrapper.cs
- RelationshipWrapper.cs
- NeutralResourcesLanguageAttribute.cs