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
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- BaseTemplateParser.cs
- Bezier.cs
- Material.cs
- CmsInterop.cs
- HttpMethodConstraint.cs
- XPathNodePointer.cs
- PnrpPermission.cs
- Stack.cs
- SpeechUI.cs
- ResourceReferenceExpression.cs
- Properties.cs
- DiagnosticTrace.cs
- ListSortDescriptionCollection.cs
- ToolstripProfessionalRenderer.cs
- CompareInfo.cs
- SqlPersonalizationProvider.cs
- XmlCodeExporter.cs
- GuidelineSet.cs
- NamespaceQuery.cs
- PropertyTabChangedEvent.cs
- WebPartDeleteVerb.cs
- Ref.cs
- IFlowDocumentViewer.cs
- HiddenField.cs
- DataSourceConverter.cs
- IpcManager.cs
- HitTestWithPointDrawingContextWalker.cs
- SequenceNumber.cs
- TabControl.cs
- MD5CryptoServiceProvider.cs
- BitmapMetadataEnumerator.cs
- EdmComplexTypeAttribute.cs
- EncryptedPackageFilter.cs
- SyndicationSerializer.cs
- SByte.cs
- Column.cs
- SHA1Managed.cs
- OdbcError.cs
- BitmapEffectInputData.cs
- EventMap.cs
- BackStopAuthenticationModule.cs
- SelectionProviderWrapper.cs
- GeometryCollection.cs
- ProxyAttribute.cs
- BrowserCapabilitiesCodeGenerator.cs
- DiscreteKeyFrames.cs
- SQLMoney.cs
- TransactionContextManager.cs
- VisualTreeUtils.cs
- DotNetATv1WindowsLogEntrySerializer.cs
- Geometry.cs
- ProxyWebPartManager.cs
- ApplicationCommands.cs
- PreservationFileReader.cs
- MobileControl.cs
- Parser.cs
- SqlProfileProvider.cs
- JsonFormatReaderGenerator.cs
- HttpCapabilitiesSectionHandler.cs
- DataStorage.cs
- GeometryValueSerializer.cs
- WindowProviderWrapper.cs
- SiteMapNodeItem.cs
- PositiveTimeSpanValidator.cs
- OracleDataReader.cs
- TextSelectionProcessor.cs
- ToolStripSeparator.cs
- SystemException.cs
- SQLConvert.cs
- WorkingDirectoryEditor.cs
- HttpConfigurationSystem.cs
- CodeSnippetStatement.cs
- TypeUtil.cs
- ParseNumbers.cs
- Formatter.cs
- XsdValidatingReader.cs
- HotSpotCollection.cs
- ComplexLine.cs
- XmlSecureResolver.cs
- DataServiceQueryOfT.cs
- QuaternionRotation3D.cs
- CustomExpression.cs
- ListBox.cs
- BinaryUtilClasses.cs
- QueryInterceptorAttribute.cs
- UpdatableWrapper.cs
- safex509handles.cs
- IConvertible.cs
- DataGridViewCellFormattingEventArgs.cs
- DataGridItemCollection.cs
- FileReader.cs
- SettingsProviderCollection.cs
- IQueryable.cs
- Renderer.cs
- XmlBindingWorker.cs
- MissingMethodException.cs
- BuildProvidersCompiler.cs
- SqlVersion.cs
- TouchDevice.cs