Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodePrimitiveExpression.cs / 1 / CodePrimitiveExpression.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 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; } } } }/// Gets or sets the object to represent. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HtmlInputReset.cs
- OdbcConnectionHandle.cs
- NotifyIcon.cs
- DynamicResourceExtensionConverter.cs
- Events.cs
- PackageController.cs
- TrackingStringDictionary.cs
- StringInfo.cs
- Function.cs
- DiffuseMaterial.cs
- PointAnimationClockResource.cs
- AssemblyAttributes.cs
- Speller.cs
- ScaleTransform.cs
- QilName.cs
- XmlSerializer.cs
- DefaultShape.cs
- DataGridCellItemAutomationPeer.cs
- Itemizer.cs
- MissingSatelliteAssemblyException.cs
- SqlDelegatedTransaction.cs
- EncoderParameter.cs
- CssTextWriter.cs
- RadioButtonFlatAdapter.cs
- XmlProcessingInstruction.cs
- BaseAddressPrefixFilterElementCollection.cs
- Application.cs
- PathBox.cs
- NativeMethods.cs
- VirtualizedItemPattern.cs
- SchemaNames.cs
- RequestCachePolicy.cs
- WebSysDisplayNameAttribute.cs
- COM2PropertyDescriptor.cs
- XMLUtil.cs
- AtomParser.cs
- NegationPusher.cs
- TextPattern.cs
- XmlUtilWriter.cs
- AnnotationComponentChooser.cs
- PriorityChain.cs
- DelayedRegex.cs
- HtmlShim.cs
- ForeignConstraint.cs
- Resources.Designer.cs
- xsdvalidator.cs
- IsolatedStoragePermission.cs
- DataColumnChangeEvent.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- XsltContext.cs
- ButtonBase.cs
- AspNetSynchronizationContext.cs
- MembershipValidatePasswordEventArgs.cs
- ProfilePropertyMetadata.cs
- NamespaceInfo.cs
- AutomationAttributeInfo.cs
- X509Extension.cs
- ExpressionUtilities.cs
- complextypematerializer.cs
- GeometryDrawing.cs
- Maps.cs
- SqlWriter.cs
- LinkedResource.cs
- CipherData.cs
- EastAsianLunisolarCalendar.cs
- CodePageEncoding.cs
- RandomNumberGenerator.cs
- TimeZone.cs
- DefaultMemberAttribute.cs
- CodeStatementCollection.cs
- AttributeUsageAttribute.cs
- EmptyReadOnlyDictionaryInternal.cs
- DesignerDeviceConfig.cs
- XPathPatternBuilder.cs
- RuleValidation.cs
- RelationshipDetailsRow.cs
- OleDbParameter.cs
- WhitespaceReader.cs
- BitArray.cs
- TemplateControlParser.cs
- FileUtil.cs
- FontWeights.cs
- PointHitTestResult.cs
- TextServicesCompartmentEventSink.cs
- DesignerUtils.cs
- HostedHttpTransportManager.cs
- MatrixValueSerializer.cs
- Helpers.cs
- CompilerTypeWithParams.cs
- CalloutQueueItem.cs
- XmlCharType.cs
- JournalEntryStack.cs
- NumericUpDownAcceleration.cs
- DockAndAnchorLayout.cs
- UriParserTemplates.cs
- Codec.cs
- AQNBuilder.cs
- BamlRecordReader.cs
- AppearanceEditorPart.cs
- Utils.cs