Code:
/ DotNET / DotNET / 8.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
- SourceLineInfo.cs
- MessagePartDescriptionCollection.cs
- AccessKeyManager.cs
- TCPClient.cs
- CanonicalizationDriver.cs
- SerializerWriterEventHandlers.cs
- ConfigXmlAttribute.cs
- DataSet.cs
- XmlQueryStaticData.cs
- ExtendedPropertyDescriptor.cs
- Point4DConverter.cs
- CodeSnippetExpression.cs
- MembershipValidatePasswordEventArgs.cs
- COMException.cs
- CodeDirectiveCollection.cs
- TransformedBitmap.cs
- RuntimeCompatibilityAttribute.cs
- SystemParameters.cs
- ToolStripTemplateNode.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- QueueProcessor.cs
- XmlConverter.cs
- Serializer.cs
- StringCollection.cs
- GlobalItem.cs
- PageBreakRecord.cs
- AsyncOperation.cs
- ModuleBuilder.cs
- TempFiles.cs
- KnownBoxes.cs
- DictionaryKeyPropertyAttribute.cs
- MasterPageCodeDomTreeGenerator.cs
- Debugger.cs
- DataGridLinkButton.cs
- ObjectNavigationPropertyMapping.cs
- DocumentCollection.cs
- XmlSchemaComplexContentExtension.cs
- InternalsVisibleToAttribute.cs
- SafeNativeMethods.cs
- ZeroOpNode.cs
- ToolStripDropDownDesigner.cs
- DateTimePickerDesigner.cs
- NotImplementedException.cs
- Manipulation.cs
- DataSourceXmlSerializationAttribute.cs
- ControlCommandSet.cs
- Automation.cs
- TimeManager.cs
- TypeSchema.cs
- ConfigurationElementCollection.cs
- ISessionStateStore.cs
- HttpModule.cs
- StrokeIntersection.cs
- ListSortDescription.cs
- SignatureDescription.cs
- Identity.cs
- SliderAutomationPeer.cs
- PaperSource.cs
- FontUnitConverter.cs
- FilterableAttribute.cs
- CaseExpr.cs
- OracleParameterBinding.cs
- DataGridCellAutomationPeer.cs
- DrawListViewColumnHeaderEventArgs.cs
- DataMisalignedException.cs
- XmlReader.cs
- EventLogConfiguration.cs
- SignatureDescription.cs
- DataGridDesigner.cs
- SystemColorTracker.cs
- OrCondition.cs
- LinkAreaEditor.cs
- CellQuery.cs
- EventMap.cs
- MatrixAnimationUsingPath.cs
- DataSourceXmlTextReader.cs
- SqlFlattener.cs
- XmlSiteMapProvider.cs
- IdleTimeoutMonitor.cs
- InlineUIContainer.cs
- ComponentCommands.cs
- DirectoryRedirect.cs
- WebBrowsableAttribute.cs
- BindingGroup.cs
- ParserHooks.cs
- StrongNameIdentityPermission.cs
- FileEnumerator.cs
- ValidationSummary.cs
- StylusPointPropertyUnit.cs
- HorizontalAlignConverter.cs
- DataListAutoFormat.cs
- SubqueryTrackingVisitor.cs
- Popup.cs
- DisplayNameAttribute.cs
- PropertyMapper.cs
- SQlBooleanStorage.cs
- TypeValidationEventArgs.cs
- ComplexType.cs
- ServiceNameElement.cs
- ellipse.cs