Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ProcessModuleDesigner.cs
- ToolStripItemImageRenderEventArgs.cs
- Comparer.cs
- HybridDictionary.cs
- SQLBytes.cs
- FixedElement.cs
- DataGridViewComboBoxCell.cs
- OleDbPropertySetGuid.cs
- IncrementalReadDecoders.cs
- Thickness.cs
- Literal.cs
- StreamGeometry.cs
- ThreadPool.cs
- SimpleMailWebEventProvider.cs
- MessageSecurityVersionConverter.cs
- Int32Storage.cs
- JoinTreeSlot.cs
- QueryOpeningEnumerator.cs
- PassportAuthenticationEventArgs.cs
- XamlRtfConverter.cs
- SslStreamSecurityUpgradeProvider.cs
- HttpVersion.cs
- Query.cs
- HashMembershipCondition.cs
- ProfilePropertySettingsCollection.cs
- PropertyInformationCollection.cs
- DateBoldEvent.cs
- Regex.cs
- XmlHelper.cs
- Win32Exception.cs
- XmlDataContract.cs
- BasicKeyConstraint.cs
- CodeConstructor.cs
- SqlInternalConnectionSmi.cs
- SRGSCompiler.cs
- ReadOnlyKeyedCollection.cs
- ImageIndexConverter.cs
- RegexCapture.cs
- WCFModelStrings.Designer.cs
- Util.cs
- BaseParagraph.cs
- TreeWalkHelper.cs
- Message.cs
- SQLBinaryStorage.cs
- ParsedRoute.cs
- DiscoveryClientReferences.cs
- ButtonChrome.cs
- ProfileSettingsCollection.cs
- WrapperEqualityComparer.cs
- MultipleViewPattern.cs
- BufferedGraphicsContext.cs
- CodeAttributeArgumentCollection.cs
- BatchStream.cs
- BaseCAMarshaler.cs
- SqlXmlStorage.cs
- SectionVisual.cs
- FontFaceLayoutInfo.cs
- HtmlSelect.cs
- DataControlCommands.cs
- InfoCardConstants.cs
- NextPreviousPagerField.cs
- ErrorRuntimeConfig.cs
- PrePrepareMethodAttribute.cs
- MsmqIntegrationReceiveParameters.cs
- RepeatButtonAutomationPeer.cs
- HttpCookie.cs
- FunctionNode.cs
- APCustomTypeDescriptor.cs
- PersistenceException.cs
- DataGridParentRows.cs
- NavigationWindowAutomationPeer.cs
- ScrollData.cs
- BindToObject.cs
- ColumnWidthChangingEvent.cs
- SimpleFileLog.cs
- SqlDataReader.cs
- QuaternionKeyFrameCollection.cs
- login.cs
- QuotedPrintableStream.cs
- StaticResourceExtension.cs
- ImageFormatConverter.cs
- ApplicationServiceHelper.cs
- WasHttpModulesInstallComponent.cs
- WebPartEditVerb.cs
- CodeTypeReferenceExpression.cs
- PublisherIdentityPermission.cs
- DashStyles.cs
- SoapSchemaExporter.cs
- AssemblyBuilder.cs
- OleDbParameterCollection.cs
- SpeechSynthesizer.cs
- XmlSecureResolver.cs
- CallbackValidatorAttribute.cs
- DocumentOrderQuery.cs
- BoundField.cs
- SqlRowUpdatingEvent.cs
- PipeSecurity.cs
- ProgressPage.cs
- InternalResources.cs
- RightsManagementEncryptedStream.cs