Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / AST / ParenExpr.cs / 1305376 / ParenExpr.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql.AST { using System; using System.Diagnostics; ////// Represents a paren expression ast node. /// internal sealed class ParenExpr : Node { private readonly AST.Node _expr; ////// Initializes paren expression. /// internal ParenExpr(AST.Node expr) { Debug.Assert(expr != null, "expr != null"); _expr = expr; } ////// Returns the parenthesized expression. /// internal AST.Node Expr { get { return _expr; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql.AST { using System; using System.Diagnostics; ////// Represents a paren expression ast node. /// internal sealed class ParenExpr : Node { private readonly AST.Node _expr; ////// Initializes paren expression. /// internal ParenExpr(AST.Node expr) { Debug.Assert(expr != null, "expr != null"); _expr = expr; } ////// Returns the parenthesized expression. /// internal AST.Node Expr { get { return _expr; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UnSafeCharBuffer.cs
- SystemDiagnosticsSection.cs
- ItemsControl.cs
- SuppressMessageAttribute.cs
- TiffBitmapEncoder.cs
- DaylightTime.cs
- GridItemPattern.cs
- Menu.cs
- XslAst.cs
- ManifestSignedXml.cs
- CodeArrayCreateExpression.cs
- ListView.cs
- SqlConnectionPoolGroupProviderInfo.cs
- GreenMethods.cs
- PasswordPropertyTextAttribute.cs
- FastEncoderWindow.cs
- TypedDatasetGenerator.cs
- LinqDataSourceStatusEventArgs.cs
- Thickness.cs
- XmlSerializerSection.cs
- Currency.cs
- TimersDescriptionAttribute.cs
- ManagedIStream.cs
- SapiAttributeParser.cs
- ContainerParagraph.cs
- ObjectAnimationUsingKeyFrames.cs
- MouseCaptureWithinProperty.cs
- FormViewInsertEventArgs.cs
- HtmlTable.cs
- RemoteArgument.cs
- FieldNameLookup.cs
- Compiler.cs
- TransactionState.cs
- NoClickablePointException.cs
- WebDescriptionAttribute.cs
- ListenerServiceInstallComponent.cs
- TemplatedMailWebEventProvider.cs
- OleDbFactory.cs
- DataGridViewRowPrePaintEventArgs.cs
- EventLogException.cs
- CorruptingExceptionCommon.cs
- TypeUsage.cs
- ViewStateChangedEventArgs.cs
- WebControl.cs
- BidPrivateBase.cs
- WinEventHandler.cs
- Assembly.cs
- XmlSchemaResource.cs
- ProxyWebPartManager.cs
- sqlser.cs
- TransformConverter.cs
- ResourceAssociationType.cs
- XmlQueryType.cs
- PerfService.cs
- DoubleIndependentAnimationStorage.cs
- AmbiguousMatchException.cs
- CopyOfAction.cs
- ReadOnlyHierarchicalDataSourceView.cs
- CryptoConfig.cs
- DataControlLinkButton.cs
- BitmapMetadataBlob.cs
- FillRuleValidation.cs
- XhtmlMobileTextWriter.cs
- XmlILModule.cs
- TextParentUndoUnit.cs
- SectionVisual.cs
- EntityDataSourceContainerNameItem.cs
- CodeDomComponentSerializationService.cs
- OdbcParameterCollection.cs
- GroupBoxAutomationPeer.cs
- MultiTrigger.cs
- FixedSOMImage.cs
- DataGridHeaderBorder.cs
- SoapFaultCodes.cs
- CheckBoxFlatAdapter.cs
- QuaternionRotation3D.cs
- ReflectPropertyDescriptor.cs
- StdRegProviderWrapper.cs
- DesignerActionListCollection.cs
- SoapHttpTransportImporter.cs
- BindingCompleteEventArgs.cs
- CultureTable.cs
- ObservableDictionary.cs
- ReaderWriterLockWrapper.cs
- DataRecordInternal.cs
- XmlArrayItemAttribute.cs
- HttpServerChannel.cs
- FixedSOMImage.cs
- ValuePatternIdentifiers.cs
- X509Certificate.cs
- Cursor.cs
- TableHeaderCell.cs
- DoubleLinkList.cs
- DataGridCaption.cs
- ByteKeyFrameCollection.cs
- XamlReader.cs
- HostingEnvironment.cs
- ListParaClient.cs
- RemotingClientProxy.cs
- FrameAutomationPeer.cs