Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeArrayIndexerExpression.cs / 1 / CodeArrayIndexerExpression.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 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; } } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ChangesetResponse.cs
- SoapTypeAttribute.cs
- WindowsFont.cs
- EventLogTraceListener.cs
- SqlNamer.cs
- TagMapInfo.cs
- ColumnResizeAdorner.cs
- ResolveMatchesCD1.cs
- Substitution.cs
- TypefaceMap.cs
- ListItemParagraph.cs
- InstanceOwnerQueryResult.cs
- HtmlInputText.cs
- ByteStreamBufferedMessageData.cs
- input.cs
- SchemaCollectionCompiler.cs
- CompositeScriptReference.cs
- WebPartChrome.cs
- XmlHierarchicalDataSourceView.cs
- BamlBinaryReader.cs
- TokenBasedSet.cs
- ControlBuilderAttribute.cs
- _ListenerAsyncResult.cs
- TimerElapsedEvenArgs.cs
- CancelEventArgs.cs
- ProjectionPruner.cs
- RightsController.cs
- OptimizedTemplateContentHelper.cs
- ConstraintConverter.cs
- SessionParameter.cs
- ContourSegment.cs
- AttachedPropertiesService.cs
- Underline.cs
- XPathAncestorQuery.cs
- PrimitiveList.cs
- CorruptingExceptionCommon.cs
- BindingsCollection.cs
- HtmlDocument.cs
- EnumerableCollectionView.cs
- mediaeventshelper.cs
- RegexMatchCollection.cs
- ValidateNames.cs
- HtmlInputFile.cs
- BitmapFrameDecode.cs
- ArrayWithOffset.cs
- rsa.cs
- Cursors.cs
- Normalizer.cs
- ServiceReference.cs
- Menu.cs
- DateTimeFormatInfoScanner.cs
- CodeSubDirectoriesCollection.cs
- BitmapImage.cs
- Transform.cs
- FixedFindEngine.cs
- ToolStripPanelRow.cs
- DataGridViewRowStateChangedEventArgs.cs
- Brushes.cs
- ObjectCloneHelper.cs
- CustomTokenProvider.cs
- TileBrush.cs
- RIPEMD160.cs
- ArrayConverter.cs
- TrustSection.cs
- Rss20FeedFormatter.cs
- LightweightCodeGenerator.cs
- GlobalizationAssembly.cs
- InternalTypeHelper.cs
- pingexception.cs
- ParentQuery.cs
- TopClause.cs
- StackBuilderSink.cs
- SqlDataReader.cs
- JpegBitmapEncoder.cs
- SecurityHelper.cs
- Material.cs
- MultipartContentParser.cs
- ProgressPage.cs
- DeleteMemberBinder.cs
- WebPartCollection.cs
- LogSwitch.cs
- GlobalAllocSafeHandle.cs
- EmptyCollection.cs
- ipaddressinformationcollection.cs
- SqlUdtInfo.cs
- RectangleConverter.cs
- ChildChangedEventArgs.cs
- PreviewPageInfo.cs
- ExtensionQuery.cs
- BinaryObjectInfo.cs
- ScriptingSectionGroup.cs
- DataViewListener.cs
- XmlEnumAttribute.cs
- PathGeometry.cs
- OleTxTransaction.cs
- ColumnResult.cs
- LineGeometry.cs
- DesignerUtils.cs
- GeneralTransformGroup.cs
- MemberAccessException.cs