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
- CalendarTable.cs
- PropertyOrder.cs
- SqlWebEventProvider.cs
- SqlException.cs
- Identifier.cs
- DocumentPageTextView.cs
- SqlCachedBuffer.cs
- BinaryCommonClasses.cs
- SourceFilter.cs
- HandlerMappingMemo.cs
- SiteMapNodeItemEventArgs.cs
- BaseProcessor.cs
- ButtonBaseDesigner.cs
- SelectedDatesCollection.cs
- DataGridPageChangedEventArgs.cs
- DPAPIProtectedConfigurationProvider.cs
- ColumnMapTranslator.cs
- MetaForeignKeyColumn.cs
- SQLInt32Storage.cs
- FileDetails.cs
- CodeGenerationManager.cs
- Win32Exception.cs
- XmlAttribute.cs
- ThicknessAnimationUsingKeyFrames.cs
- ClientProxyGenerator.cs
- HorizontalAlignConverter.cs
- ControlDesigner.cs
- XmlSchemaAnyAttribute.cs
- SqlProfileProvider.cs
- PeerResolverElement.cs
- LocatorManager.cs
- DefaultProxySection.cs
- SecurityRuntime.cs
- CookieParameter.cs
- QueryParameter.cs
- SemaphoreSecurity.cs
- DataGridViewRowsRemovedEventArgs.cs
- ServiceTimeoutsBehavior.cs
- EntitySqlQueryState.cs
- ClientSection.cs
- TextBoxView.cs
- Logging.cs
- StateChangeEvent.cs
- JsonQNameDataContract.cs
- IntranetCredentialPolicy.cs
- ComplexTypeEmitter.cs
- FigureHelper.cs
- PenThreadPool.cs
- StateWorkerRequest.cs
- CloudCollection.cs
- ObjectDataSourceEventArgs.cs
- SchemaElementDecl.cs
- ScalarOps.cs
- Missing.cs
- HwndStylusInputProvider.cs
- AssemblyCollection.cs
- ReadOnlyPropertyMetadata.cs
- ValidationErrorCollection.cs
- SingleObjectCollection.cs
- DebugView.cs
- DataGridColumnCollection.cs
- ClipboardData.cs
- PropertyPath.cs
- SortKey.cs
- NamespaceInfo.cs
- CodeActivityMetadata.cs
- NavigatorInput.cs
- Odbc32.cs
- GridSplitter.cs
- PerCallInstanceContextProvider.cs
- MatrixIndependentAnimationStorage.cs
- SimpleApplicationHost.cs
- ContractNamespaceAttribute.cs
- Pkcs7Signer.cs
- EventLogHandle.cs
- DataSysAttribute.cs
- RegexCompiler.cs
- CompilerTypeWithParams.cs
- StringCollectionEditor.cs
- RuntimeCompatibilityAttribute.cs
- Parameter.cs
- ContractBase.cs
- TransformerInfo.cs
- EventLogger.cs
- HttpResponse.cs
- MissingMethodException.cs
- CommentEmitter.cs
- PrintDialog.cs
- UndoManager.cs
- DesignerActionUIService.cs
- PipeStream.cs
- RotateTransform.cs
- SecurityRuntime.cs
- Hex.cs
- DataSourceProvider.cs
- ExpressionEvaluator.cs
- OutputCacheProfile.cs
- DataGridViewToolTip.cs
- SiteOfOriginPart.cs
- WindowsScroll.cs