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
- SerializationHelper.cs
- BatchServiceHost.cs
- DataSvcMapFileSerializer.cs
- SByte.cs
- TextEditorCopyPaste.cs
- PolyLineSegmentFigureLogic.cs
- sqlser.cs
- TypedRowGenerator.cs
- PageTextBox.cs
- BitmapDecoder.cs
- Latin1Encoding.cs
- NoPersistProperty.cs
- StringStorage.cs
- LinqDataSource.cs
- Vector.cs
- SHA1CryptoServiceProvider.cs
- TextBoxView.cs
- DefaultValueAttribute.cs
- cookie.cs
- ImageMetadata.cs
- Speller.cs
- IpcClientChannel.cs
- OdbcTransaction.cs
- HostingEnvironmentException.cs
- StringArrayConverter.cs
- Helpers.cs
- UIElementIsland.cs
- CompositeFontParser.cs
- ToolStripContentPanelRenderEventArgs.cs
- DataGridViewColumnDesigner.cs
- SafeLibraryHandle.cs
- TableRow.cs
- SystemKeyConverter.cs
- StringFormat.cs
- CodeStatement.cs
- CompositeScriptReference.cs
- ExecutionEngineException.cs
- regiisutil.cs
- ObjectPersistData.cs
- MissingManifestResourceException.cs
- DecoderFallbackWithFailureFlag.cs
- HttpServerUtilityBase.cs
- EncoderFallback.cs
- DataGridViewAddColumnDialog.cs
- EntryWrittenEventArgs.cs
- MultipartIdentifier.cs
- SortedList.cs
- ApplyHostConfigurationBehavior.cs
- ComPlusSynchronizationContext.cs
- RightsManagementEncryptionTransform.cs
- XmlNavigatorStack.cs
- ByteStack.cs
- BaseTreeIterator.cs
- CompletedAsyncResult.cs
- ManualWorkflowSchedulerService.cs
- TextBoxAutomationPeer.cs
- ToolStripDropDownButton.cs
- EntityClientCacheKey.cs
- WinCategoryAttribute.cs
- FaultDesigner.cs
- CodeDOMUtility.cs
- KoreanCalendar.cs
- ProcessingInstructionAction.cs
- SmiEventStream.cs
- SQLDateTimeStorage.cs
- PageSettings.cs
- SQLInt64.cs
- NameValueConfigurationElement.cs
- SessionEndingEventArgs.cs
- EdmFunction.cs
- LogoValidationException.cs
- Volatile.cs
- FirstMatchCodeGroup.cs
- MouseActionConverter.cs
- Funcletizer.cs
- DrawingDrawingContext.cs
- Evidence.cs
- ObjectListDataBindEventArgs.cs
- ToolstripProfessionalRenderer.cs
- TableDetailsCollection.cs
- FieldToken.cs
- DynamicControlParameter.cs
- ObjectHelper.cs
- ClientFormsIdentity.cs
- WinFormsSecurity.cs
- DataTableExtensions.cs
- TranslateTransform3D.cs
- UniqueEventHelper.cs
- CookieHandler.cs
- CharAnimationBase.cs
- RoleGroup.cs
- StoreItemCollection.cs
- QueryOutputWriter.cs
- AccessDataSourceDesigner.cs
- StreamInfo.cs
- PlanCompilerUtil.cs
- DoubleCollection.cs
- XmlSchemaAppInfo.cs
- SqlBuffer.cs
- UseManagedPresentationElement.cs