Code:
/ DotNET / DotNET / 8.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
- SoapEnumAttribute.cs
- PropertyChangingEventArgs.cs
- MSG.cs
- ResourceDisplayNameAttribute.cs
- GridViewItemAutomationPeer.cs
- XmlDataSourceNodeDescriptor.cs
- WebReferencesBuildProvider.cs
- SchemaCollectionCompiler.cs
- ExpressionNormalizer.cs
- NotifyIcon.cs
- Graph.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- ZoomPercentageConverter.cs
- ThemeDictionaryExtension.cs
- ActivityStatusChangeEventArgs.cs
- FrameSecurityDescriptor.cs
- WorkerRequest.cs
- CodeBlockBuilder.cs
- PipeStream.cs
- util.cs
- MatrixAnimationUsingPath.cs
- DataSourceXmlElementAttribute.cs
- Vector.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- GridViewDesigner.cs
- SequenceQuery.cs
- BitStream.cs
- ConnectionManagementElementCollection.cs
- TableRow.cs
- BitmapCodecInfo.cs
- LocalFileSettingsProvider.cs
- HiddenField.cs
- ActiveXHost.cs
- UriExt.cs
- LongValidatorAttribute.cs
- ComboBoxItem.cs
- MailMessageEventArgs.cs
- EmptyCollection.cs
- ShapingWorkspace.cs
- ViewStateAttachedPropertyFeature.cs
- PinnedBufferMemoryStream.cs
- IisTraceWebEventProvider.cs
- Perspective.cs
- EmptyImpersonationContext.cs
- Container.cs
- Accessible.cs
- UserControlBuildProvider.cs
- JavaScriptString.cs
- DocumentViewer.cs
- _MultipleConnectAsync.cs
- ErrorEventArgs.cs
- XamlWriter.cs
- SplineKeyFrames.cs
- TextServicesPropertyRanges.cs
- DataFormats.cs
- BlurEffect.cs
- TraceProvider.cs
- CqlGenerator.cs
- XmlSchemaAnyAttribute.cs
- QueryConverter.cs
- SqlInfoMessageEvent.cs
- SingletonInstanceContextProvider.cs
- BackStopAuthenticationModule.cs
- CaretElement.cs
- CellConstant.cs
- TextEndOfLine.cs
- TreeViewImageIndexConverter.cs
- HtmlButton.cs
- ArrangedElement.cs
- XmlnsCache.cs
- CipherData.cs
- OleDbReferenceCollection.cs
- ColorPalette.cs
- SqlCommandAsyncResult.cs
- DiscardableAttribute.cs
- URIFormatException.cs
- coordinatorscratchpad.cs
- AutoResetEvent.cs
- GeneralTransform.cs
- SerializationStore.cs
- TypeDelegator.cs
- ObjectDataSourceMethodEventArgs.cs
- ListenerElementsCollection.cs
- MethodCallTranslator.cs
- SocketAddress.cs
- SourceCollection.cs
- SqlDataRecord.cs
- UiaCoreProviderApi.cs
- DataGridViewComboBoxColumn.cs
- CatalogZoneAutoFormat.cs
- SoapTypeAttribute.cs
- BooleanAnimationBase.cs
- HeaderUtility.cs
- AnnotationObservableCollection.cs
- TypeBinaryExpression.cs
- LayoutDump.cs
- Exceptions.cs
- StringAnimationUsingKeyFrames.cs
- StandardCommands.cs
- RegexReplacement.cs