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
- WebPartHelpVerb.cs
- ProgressBarBrushConverter.cs
- XmlUnspecifiedAttribute.cs
- DynamicObject.cs
- CapabilitiesPattern.cs
- RijndaelManaged.cs
- ObjectNotFoundException.cs
- PageThemeParser.cs
- RuntimeVariableList.cs
- PeerTransportListenAddressValidator.cs
- RowParagraph.cs
- XmlDocumentFragment.cs
- MethodCallTranslator.cs
- Rules.cs
- HttpBufferlessInputStream.cs
- Win32Native.cs
- Point.cs
- AssemblyResourceLoader.cs
- XamlBrushSerializer.cs
- DrawingContextWalker.cs
- DrawItemEvent.cs
- SpecialTypeDataContract.cs
- DictationGrammar.cs
- designeractionbehavior.cs
- SqlMethodTransformer.cs
- GridViewRow.cs
- TemplateInstanceAttribute.cs
- DecoratedNameAttribute.cs
- ClientTargetCollection.cs
- GridViewRowCollection.cs
- XamlTemplateSerializer.cs
- HttpSessionStateWrapper.cs
- ClientScriptManagerWrapper.cs
- JapaneseLunisolarCalendar.cs
- DbTypeMap.cs
- PropertyConverter.cs
- XamlTypeMapperSchemaContext.cs
- WindowsListViewGroupSubsetLink.cs
- ProfilePropertySettingsCollection.cs
- ConfigurationStrings.cs
- TemplatePagerField.cs
- RectConverter.cs
- NetStream.cs
- ConfigXmlCDataSection.cs
- XmlSignificantWhitespace.cs
- TrackBarRenderer.cs
- RawContentTypeMapper.cs
- TemplateEditingVerb.cs
- PropertyInformationCollection.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- KeyBinding.cs
- TextUtf8RawTextWriter.cs
- WebPartEditorCancelVerb.cs
- RemotingClientProxy.cs
- DesignerProperties.cs
- RequestTimeoutManager.cs
- IIS7UserPrincipal.cs
- ManagementOperationWatcher.cs
- TreeNodeMouseHoverEvent.cs
- DispatcherOperation.cs
- DbConnectionPoolIdentity.cs
- Durable.cs
- ParallelQuery.cs
- GreenMethods.cs
- QueryRewriter.cs
- DoubleLinkListEnumerator.cs
- LoadWorkflowByKeyAsyncResult.cs
- OleServicesContext.cs
- TreeViewDesigner.cs
- PlaceHolder.cs
- FrameworkElementFactoryMarkupObject.cs
- _Connection.cs
- DbBuffer.cs
- _WinHttpWebProxyDataBuilder.cs
- DispatcherObject.cs
- PointHitTestResult.cs
- LayoutDump.cs
- Message.cs
- SignatureHelper.cs
- Activity.cs
- DetailsViewUpdateEventArgs.cs
- WorkflowRuntimeSection.cs
- OdbcErrorCollection.cs
- DataConnectionHelper.cs
- arabicshape.cs
- ContextBase.cs
- AssemblyCollection.cs
- GenericPrincipal.cs
- Parsers.cs
- RijndaelManaged.cs
- SqlAggregateChecker.cs
- SoapFormatterSinks.cs
- SystemResourceHost.cs
- ActivityXRefConverter.cs
- BamlLocalizableResourceKey.cs
- Function.cs
- HttpClientCertificate.cs
- MSAAEventDispatcher.cs
- ExpressionPrefixAttribute.cs
- HttpProcessUtility.cs