Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeOfExpression.cs / 1 / CodeTypeOfExpression.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 CodeTypeOfExpression : CodeExpression { private CodeTypeReference type; ////// Represents a TypeOf expression. /// ////// public CodeTypeOfExpression() { } ////// Initializes a new instance of ///. /// /// public CodeTypeOfExpression(CodeTypeReference type) { Type = type; } ////// Initializes a new instance of ///. /// /// public CodeTypeOfExpression(string type) { Type = new CodeTypeReference(type); } ///[To be supplied.] ////// public CodeTypeOfExpression(Type type) { Type = new CodeTypeReference(type); } ///[To be supplied.] ////// public CodeTypeReference Type { get { if (type == null) { type = new CodeTypeReference(""); } return type; } set { type = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets the data type. /// ///// 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 CodeTypeOfExpression : CodeExpression { private CodeTypeReference type; ////// Represents a TypeOf expression. /// ////// public CodeTypeOfExpression() { } ////// Initializes a new instance of ///. /// /// public CodeTypeOfExpression(CodeTypeReference type) { Type = type; } ////// Initializes a new instance of ///. /// /// public CodeTypeOfExpression(string type) { Type = new CodeTypeReference(type); } ///[To be supplied.] ////// public CodeTypeOfExpression(Type type) { Type = new CodeTypeReference(type); } ///[To be supplied.] ////// public CodeTypeReference Type { get { if (type == null) { type = new CodeTypeReference(""); } return type; } set { type = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets the data type. /// ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RegexCompiler.cs
- ServiceHttpHandlerFactory.cs
- MultiPropertyDescriptorGridEntry.cs
- PropertyToken.cs
- TextDocumentView.cs
- XmlDictionaryString.cs
- ResponseStream.cs
- RuleSettings.cs
- ModuleBuilderData.cs
- DragEvent.cs
- FontEmbeddingManager.cs
- GradientStop.cs
- FrameworkReadOnlyPropertyMetadata.cs
- SkewTransform.cs
- CroppedBitmap.cs
- EntityWrapper.cs
- ClientSettingsSection.cs
- TraceListeners.cs
- FactoryMaker.cs
- ClientConvert.cs
- ManagementException.cs
- DataGridViewAdvancedBorderStyle.cs
- FixedSOMFixedBlock.cs
- CTreeGenerator.cs
- InputBinder.cs
- ContentOperations.cs
- EventBuilder.cs
- SafeNativeMethods.cs
- LowerCaseStringConverter.cs
- CheckableControlBaseAdapter.cs
- CreateUserErrorEventArgs.cs
- WsdlContractConversionContext.cs
- CultureInfoConverter.cs
- ListViewInsertEventArgs.cs
- AuthenticationSection.cs
- MULTI_QI.cs
- BehaviorEditorPart.cs
- DateTimeAutomationPeer.cs
- PaperSource.cs
- httpapplicationstate.cs
- UiaCoreApi.cs
- ClientProtocol.cs
- QueueTransferProtocol.cs
- XmlConverter.cs
- DataGridTextBoxColumn.cs
- cookie.cs
- XmlSchemaValidationException.cs
- PolygonHotSpot.cs
- SiteOfOriginPart.cs
- UrlMappingCollection.cs
- SqlDataSource.cs
- WebPartCatalogCloseVerb.cs
- EventDescriptorCollection.cs
- DbProviderFactory.cs
- MatchAttribute.cs
- srgsitem.cs
- TextElementCollectionHelper.cs
- MenuEventArgs.cs
- SEHException.cs
- TableRowGroupCollection.cs
- MediaPlayer.cs
- ListViewContainer.cs
- DoubleCollection.cs
- WebRequestModuleElementCollection.cs
- SynchronousChannelMergeEnumerator.cs
- StateBag.cs
- ExtendedPropertyDescriptor.cs
- PropertyManager.cs
- TcpAppDomainProtocolHandler.cs
- XmlNamespaceMapping.cs
- InfiniteIntConverter.cs
- Soap.cs
- SpanIndex.cs
- WebBrowserNavigatedEventHandler.cs
- SQLBytesStorage.cs
- CloseCollectionAsyncResult.cs
- TimeSpanConverter.cs
- TypeUsageBuilder.cs
- PopOutPanel.cs
- SortQuery.cs
- FrameworkContentElement.cs
- GridErrorDlg.cs
- SqlProfileProvider.cs
- CommandLibraryHelper.cs
- ValuePatternIdentifiers.cs
- LinkButton.cs
- ProtocolsConfigurationHandler.cs
- CodeTypeOfExpression.cs
- InternalBufferManager.cs
- HttpProfileGroupBase.cs
- ToolStripOverflow.cs
- NavigationHelper.cs
- ImageButton.cs
- Simplifier.cs
- DataGridColumnsPage.cs
- MessageEnumerator.cs
- CacheRequest.cs
- ISCIIEncoding.cs
- DesignerDataSourceView.cs
- DispatcherFrame.cs