Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodePrimitiveExpression.cs / 1305376 / CodePrimitiveExpression.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 CodePrimitiveExpression : CodeExpression { private object value; ////// Represents a primitive value. /// ////// public CodePrimitiveExpression() { } ////// Initializes a new instance of ///. /// /// public CodePrimitiveExpression(object value) { Value = value; } ////// Initializes a new instance of ///using the specified /// object. /// /// public object Value { get { return value; } set { this.value = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets the object to represent. /// ///// // //----------------------------------------------------------------------------- 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 CodePrimitiveExpression : CodeExpression { private object value; ////// Represents a primitive value. /// ////// public CodePrimitiveExpression() { } ////// Initializes a new instance of ///. /// /// public CodePrimitiveExpression(object value) { Value = value; } ////// Initializes a new instance of ///using the specified /// object. /// /// public object Value { get { return value; } set { this.value = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets the object to represent. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ServicePoint.cs
- VariableAction.cs
- PageWrapper.cs
- WindowsGrip.cs
- BmpBitmapEncoder.cs
- MetadataArtifactLoaderResource.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- CompiledRegexRunner.cs
- SmiRequestExecutor.cs
- TrackingProfileCache.cs
- ProfileEventArgs.cs
- ChannelManagerHelpers.cs
- ExpressionEditorAttribute.cs
- CodeSnippetTypeMember.cs
- HttpRequest.cs
- HostExecutionContextManager.cs
- Helper.cs
- DataKey.cs
- StateWorkerRequest.cs
- TraceEventCache.cs
- DefaultTextStoreTextComposition.cs
- XsdBuilder.cs
- FileNotFoundException.cs
- SkewTransform.cs
- LogConverter.cs
- ClonableStack.cs
- hresults.cs
- XmlAnyAttributeAttribute.cs
- InternalPermissions.cs
- Comparer.cs
- EnvelopedSignatureTransform.cs
- SerialStream.cs
- ProcessHostMapPath.cs
- HtmlHistory.cs
- MetricEntry.cs
- ExpandCollapsePatternIdentifiers.cs
- ControlPaint.cs
- ListViewDataItem.cs
- ThemeableAttribute.cs
- CommonProperties.cs
- WSHttpSecurityElement.cs
- VirtualPathData.cs
- TemplateXamlParser.cs
- XMLDiffLoader.cs
- Int32Rect.cs
- HelpInfo.cs
- XmlSchemaComplexContentRestriction.cs
- TypeSystemProvider.cs
- DbXmlEnabledProviderManifest.cs
- MenuCommand.cs
- TableAdapterManagerMethodGenerator.cs
- SingleAnimationBase.cs
- ExpressionTable.cs
- ChannelBuilder.cs
- MatrixCamera.cs
- DoubleLinkListEnumerator.cs
- BitmapEffect.cs
- GeneralTransform3D.cs
- ToolStripContainerActionList.cs
- AppDomainShutdownMonitor.cs
- PropertyRef.cs
- FigureParaClient.cs
- RemotingConfigParser.cs
- ConfigXmlWhitespace.cs
- PropertyDescriptors.cs
- HtmlMeta.cs
- AttributeData.cs
- EventLogEntryCollection.cs
- VectorCollectionValueSerializer.cs
- PrintPageEvent.cs
- StylusDownEventArgs.cs
- SqlProcedureAttribute.cs
- TypeUsageBuilder.cs
- HuffCodec.cs
- DateTime.cs
- ClientSideQueueItem.cs
- RuntimeConfigurationRecord.cs
- BaseValidatorDesigner.cs
- XmlSchemaSimpleContentExtension.cs
- DocumentViewerConstants.cs
- CommandValueSerializer.cs
- CookieProtection.cs
- StateDesigner.cs
- SingleTagSectionHandler.cs
- Mapping.cs
- EtwTrace.cs
- ConstraintEnumerator.cs
- CssStyleCollection.cs
- GeneratedCodeAttribute.cs
- DataTableTypeConverter.cs
- Environment.cs
- SafeThemeHandle.cs
- SymbolPair.cs
- Interlocked.cs
- UnicastIPAddressInformationCollection.cs
- DataControlPagerLinkButton.cs
- RegionInfo.cs
- HtmlLink.cs
- ResizeGrip.cs
- ToolStripHighContrastRenderer.cs