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
- sqlmetadatafactory.cs
- CodeSnippetStatement.cs
- LogEntrySerialization.cs
- AuthStoreRoleProvider.cs
- ReadOnlyHierarchicalDataSource.cs
- NullReferenceException.cs
- RegularExpressionValidator.cs
- SafeUserTokenHandle.cs
- BitmapInitialize.cs
- MetabaseServerConfig.cs
- DbProviderConfigurationHandler.cs
- LocationUpdates.cs
- BitmapEffectDrawingContextState.cs
- glyphs.cs
- FrameworkContentElement.cs
- AttributedMetaModel.cs
- IntSecurity.cs
- CustomAttributeFormatException.cs
- ViewManagerAttribute.cs
- SoapElementAttribute.cs
- PreviewPrintController.cs
- ZipIOCentralDirectoryBlock.cs
- SQLInt32Storage.cs
- Drawing.cs
- ToolboxCategory.cs
- CodeMemberProperty.cs
- BaseDataList.cs
- RayHitTestParameters.cs
- DataKeyPropertyAttribute.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- ConversionContext.cs
- DataGridView.cs
- PeerServiceMessageContracts.cs
- ListSortDescription.cs
- CategoryNameCollection.cs
- querybuilder.cs
- KnownBoxes.cs
- CodeDesigner.cs
- Int16Animation.cs
- FusionWrap.cs
- BitmapSourceSafeMILHandle.cs
- ManualResetEvent.cs
- PlacementWorkspace.cs
- MachineKeyValidationConverter.cs
- CustomMenuItemCollection.cs
- TypeSystem.cs
- RuntimeConfigLKG.cs
- SQLSingleStorage.cs
- ByeOperationCD1AsyncResult.cs
- PageSettings.cs
- CodeMethodInvokeExpression.cs
- WebBrowserEvent.cs
- ScrollItemProviderWrapper.cs
- AuthenticationException.cs
- DataGridViewCellValueEventArgs.cs
- AsymmetricSignatureFormatter.cs
- TrustLevelCollection.cs
- ScrollableControl.cs
- ReferencedAssemblyResolver.cs
- FontConverter.cs
- DynamicRouteExpression.cs
- ParentQuery.cs
- ControlTemplate.cs
- AsymmetricAlgorithm.cs
- Int32RectValueSerializer.cs
- InkSerializer.cs
- SHA1.cs
- RealProxy.cs
- HeaderedContentControl.cs
- EventProviderBase.cs
- OrthographicCamera.cs
- ColorKeyFrameCollection.cs
- FormViewCommandEventArgs.cs
- PolyQuadraticBezierSegment.cs
- ListSortDescriptionCollection.cs
- WithStatement.cs
- CollectionBase.cs
- SemanticResultValue.cs
- DictionarySectionHandler.cs
- WindowsScrollBarBits.cs
- Source.cs
- ConfigurationUtility.cs
- ProcessModule.cs
- InputBindingCollection.cs
- KernelTypeValidation.cs
- BitmapMetadataBlob.cs
- ServiceDeploymentInfo.cs
- DependencyObjectCodeDomSerializer.cs
- Connector.cs
- ScrollItemPattern.cs
- RangeValidator.cs
- GraphicsState.cs
- MembershipUser.cs
- SegmentInfo.cs
- PbrsForward.cs
- ModelEditingScope.cs
- DataGridTextBox.cs
- MemberRelationshipService.cs
- XmlReaderSettings.cs
- QilList.cs