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
- HtmlTernaryTree.cs
- TextEditorLists.cs
- JoinSymbol.cs
- EntityRecordInfo.cs
- ComponentTray.cs
- Int64AnimationBase.cs
- AuthenticatedStream.cs
- ResourceSet.cs
- ToolStripDropDownItem.cs
- XmlSchemaDatatype.cs
- HttpEncoder.cs
- CodeAccessPermission.cs
- RIPEMD160Managed.cs
- Button.cs
- InvalidProgramException.cs
- ToolStripSplitStackLayout.cs
- ListViewUpdatedEventArgs.cs
- TableCell.cs
- TextDocumentView.cs
- RawStylusSystemGestureInputReport.cs
- DataTableReader.cs
- OleDbConnection.cs
- InstanceKeyCompleteException.cs
- SystemParameters.cs
- XsltOutput.cs
- ClientRuntimeConfig.cs
- Messages.cs
- OletxEnlistment.cs
- BrowserInteropHelper.cs
- TransactionsSectionGroup.cs
- RoleExceptions.cs
- CharKeyFrameCollection.cs
- HttpCapabilitiesBase.cs
- UInt32.cs
- FixedStringLookup.cs
- PromptEventArgs.cs
- TraceSwitch.cs
- AccessorTable.cs
- RelationshipDetailsRow.cs
- InvalidContentTypeException.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- EdmItemError.cs
- MSAANativeProvider.cs
- NativeMethodsOther.cs
- ParserStack.cs
- WebServiceErrorEvent.cs
- Calendar.cs
- CodeMethodReturnStatement.cs
- _TLSstream.cs
- PipelineModuleStepContainer.cs
- XXXInfos.cs
- DragCompletedEventArgs.cs
- ErrorsHelper.cs
- ClientSettingsProvider.cs
- StringResourceManager.cs
- NetNamedPipeBindingElement.cs
- DataServiceRequestOfT.cs
- ProxyWebPartManagerDesigner.cs
- RowCache.cs
- ListControl.cs
- MenuItem.cs
- CompatibleComparer.cs
- XmlSchemaComplexContentRestriction.cs
- PrimitiveXmlSerializers.cs
- StreamMarshaler.cs
- NamespaceExpr.cs
- HashRepartitionEnumerator.cs
- TransformerInfoCollection.cs
- Padding.cs
- TargetPerspective.cs
- OdbcPermission.cs
- processwaithandle.cs
- ReferenceConverter.cs
- FormsAuthenticationEventArgs.cs
- InlineObject.cs
- ContractMethodParameterInfo.cs
- FormsAuthenticationCredentials.cs
- StickyNoteContentControl.cs
- ComboBoxRenderer.cs
- PropertyGridCommands.cs
- _NegoStream.cs
- AutomationProperty.cs
- EventDescriptor.cs
- FirewallWrapper.cs
- EditingCoordinator.cs
- ApplicationHost.cs
- RuntimeConfigurationRecord.cs
- Rotation3DKeyFrameCollection.cs
- CompiledELinqQueryState.cs
- WebPartHelpVerb.cs
- SoapFault.cs
- BezierSegment.cs
- indexingfiltermarshaler.cs
- PathNode.cs
- CheckedListBox.cs
- SafeNativeMethods.cs
- ACE.cs
- Metadata.cs
- ScrollChrome.cs
- XPathBinder.cs