Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } } }/// Gets or sets the data type. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RepeaterItemCollection.cs
- ObjectViewQueryResultData.cs
- AstNode.cs
- EdmProviderManifest.cs
- AssemblyAttributes.cs
- LassoSelectionBehavior.cs
- PathFigureCollection.cs
- HandlerBase.cs
- ContractAdapter.cs
- Synchronization.cs
- FunctionImportElement.cs
- HTTPRemotingHandler.cs
- BehaviorEditorPart.cs
- HandlerMappingMemo.cs
- WebPartTransformerCollection.cs
- PhoneCallDesigner.cs
- CaretElement.cs
- DBCSCodePageEncoding.cs
- HtmlButton.cs
- ItemCheckedEvent.cs
- InstanceLockException.cs
- CheckBoxPopupAdapter.cs
- QualifiedCellIdBoolean.cs
- Vars.cs
- BrowserPolicyValidator.cs
- DefaultDiscoveryService.cs
- TextSelection.cs
- ClientFormsIdentity.cs
- ProgressChangedEventArgs.cs
- ResourceSet.cs
- HostedTransportConfigurationManager.cs
- MdiWindowListStrip.cs
- Send.cs
- PenThreadPool.cs
- URLAttribute.cs
- StorageTypeMapping.cs
- SpellerError.cs
- Int16AnimationBase.cs
- ToolStripGripRenderEventArgs.cs
- WpfKnownMemberInvoker.cs
- MimeParameter.cs
- ReachDocumentSequenceSerializer.cs
- ResourceSet.cs
- Font.cs
- HostedTcpTransportManager.cs
- SelectedCellsCollection.cs
- SQLStringStorage.cs
- XmlSchemaSearchPattern.cs
- RuleEngine.cs
- LinqDataSourceSelectEventArgs.cs
- XmlSchemaAnnotated.cs
- RequestContext.cs
- newinstructionaction.cs
- RewritingValidator.cs
- GridViewUpdateEventArgs.cs
- HMACSHA512.cs
- ToolStripPanelCell.cs
- DbDataReader.cs
- CreateRefExpr.cs
- Int16.cs
- PhoneCallDesigner.cs
- SqlBulkCopyColumnMappingCollection.cs
- CellTreeNode.cs
- HtmlTernaryTree.cs
- PrimitiveXmlSerializers.cs
- Vector3DKeyFrameCollection.cs
- NotConverter.cs
- IChannel.cs
- LongSumAggregationOperator.cs
- DataControlCommands.cs
- PageVisual.cs
- Util.cs
- PlanCompiler.cs
- QilGenerator.cs
- XmlSchemas.cs
- XmlUtil.cs
- MeshGeometry3D.cs
- HostingEnvironmentException.cs
- AppearanceEditorPart.cs
- AssociationEndMember.cs
- ToolStripHighContrastRenderer.cs
- DependencyPropertyKey.cs
- KeyGestureConverter.cs
- SendKeys.cs
- SQLInt16.cs
- ConfigurationManagerInternal.cs
- SymDocumentType.cs
- InternalControlCollection.cs
- Geometry.cs
- WebPartConnectVerb.cs
- WebPartConnectionsCloseVerb.cs
- WebServiceErrorEvent.cs
- ClipboardData.cs
- MetadataSerializer.cs
- BitmapEffectInput.cs
- WebPartConnectionsDisconnectVerb.cs
- DataBoundLiteralControl.cs
- CoTaskMemUnicodeSafeHandle.cs
- SqlTriggerAttribute.cs
- ReferencedCollectionType.cs