Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeArrayIndexerExpression.cs / 1305376 / CodeArrayIndexerExpression.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeArrayIndexerExpression : CodeExpression { private CodeExpression targetObject; private CodeExpressionCollection indices; ////// Represents an array indexer expression. /// ////// public CodeArrayIndexerExpression() { } ///[To be supplied.] ////// public CodeArrayIndexerExpression(CodeExpression targetObject, params CodeExpression[] indices) { this.targetObject = targetObject; this.indices = new CodeExpressionCollection(); this.indices.AddRange(indices); } ///[To be supplied.] ////// public CodeExpression TargetObject { get { return targetObject; } set { targetObject = value; } } ///[To be supplied.] ////// public CodeExpressionCollection Indices { get { if (indices == null) { indices = new CodeExpressionCollection(); } return indices; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeArrayIndexerExpression : CodeExpression { private CodeExpression targetObject; private CodeExpressionCollection indices; ////// Represents an array indexer expression. /// ////// public CodeArrayIndexerExpression() { } ///[To be supplied.] ////// public CodeArrayIndexerExpression(CodeExpression targetObject, params CodeExpression[] indices) { this.targetObject = targetObject; this.indices = new CodeExpressionCollection(); this.indices.AddRange(indices); } ///[To be supplied.] ////// public CodeExpression TargetObject { get { return targetObject; } set { targetObject = value; } } ///[To be supplied.] ////// public CodeExpressionCollection Indices { get { if (indices == null) { indices = new CodeExpressionCollection(); } return indices; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextSelectionHelper.cs
- Button.cs
- WorkflowMarkupSerializer.cs
- InputLanguageEventArgs.cs
- CachingHintValidation.cs
- BufferBuilder.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- PixelFormat.cs
- StringAttributeCollection.cs
- ByValueEqualityComparer.cs
- StylusPointDescription.cs
- ConstraintStruct.cs
- TextServicesCompartmentContext.cs
- InputScope.cs
- CharKeyFrameCollection.cs
- InputProcessorProfiles.cs
- ScriptResourceMapping.cs
- ThreadAttributes.cs
- ColorConverter.cs
- StreamWriter.cs
- AxisAngleRotation3D.cs
- PinnedBufferMemoryStream.cs
- XmlNodeComparer.cs
- ValueType.cs
- SHA256.cs
- UIntPtr.cs
- ContextMenuStripGroup.cs
- VisualTreeUtils.cs
- BasicExpressionVisitor.cs
- Win32SafeHandles.cs
- RenderOptions.cs
- ParsedAttributeCollection.cs
- Root.cs
- SizeAnimation.cs
- TextChangedEventArgs.cs
- MediaCommands.cs
- CodeGenerator.cs
- XslVisitor.cs
- GAC.cs
- DrawingDrawingContext.cs
- PreservationFileWriter.cs
- TreeView.cs
- objectresult_tresulttype.cs
- LinqDataSourceUpdateEventArgs.cs
- JoinSymbol.cs
- PingReply.cs
- PerformanceCounterTraceRecord.cs
- UriParserTemplates.cs
- AttributeCollection.cs
- UserControl.cs
- MethodImplAttribute.cs
- UIElementAutomationPeer.cs
- EventSchemaTraceListener.cs
- ToolboxSnapDragDropEventArgs.cs
- ViewBox.cs
- CorePropertiesFilter.cs
- HtmlTableRowCollection.cs
- ToolStripSeparator.cs
- Int64AnimationUsingKeyFrames.cs
- WebPartsSection.cs
- HttpContext.cs
- ProtocolsConfigurationEntry.cs
- LogEntryDeserializer.cs
- Debug.cs
- StorageEndPropertyMapping.cs
- ErrorTableItemStyle.cs
- SecurityUtils.cs
- DataGridSortCommandEventArgs.cs
- XmlSchemaValidationException.cs
- DES.cs
- Module.cs
- BitmapEffectInput.cs
- SyndicationFeedFormatter.cs
- PageParserFilter.cs
- PerfCounterSection.cs
- ControlTemplate.cs
- BitmapCache.cs
- ElementFactory.cs
- BrowserCapabilitiesCompiler.cs
- CodeAttachEventStatement.cs
- FilterableAttribute.cs
- Vector3DConverter.cs
- FontFamily.cs
- _HelperAsyncResults.cs
- EncodingInfo.cs
- HostedTransportConfigurationManager.cs
- CheckoutException.cs
- DeobfuscatingStream.cs
- baseaxisquery.cs
- sqlcontext.cs
- XPathNavigatorReader.cs
- RegexRunnerFactory.cs
- ExceptionUtil.cs
- EntityKeyElement.cs
- AnnotationComponentManager.cs
- SelectedDatesCollection.cs
- MenuItemBinding.cs
- FileNotFoundException.cs
- Bind.cs
- formatter.cs