Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeReferenceExpression.cs / 1 / CodeTypeReferenceExpression.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 CodeTypeReferenceExpression : CodeExpression { private CodeTypeReference type; ////// Represents a reference to a type. /// ////// public CodeTypeReferenceExpression() { } ////// Initializes a new instance of ///. /// /// public CodeTypeReferenceExpression(CodeTypeReference type) { Type = type; } ////// Initializes a new instance of ///using the specified type. /// /// public CodeTypeReferenceExpression(string type) { Type = new CodeTypeReference(type); } ///[To be supplied.] ////// public CodeTypeReferenceExpression(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 type to reference. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ActiveDocumentEvent.cs
- PeerHopCountAttribute.cs
- EnumType.cs
- BaseParser.cs
- ProfileEventArgs.cs
- DataTransferEventArgs.cs
- XmlReaderSettings.cs
- TracePayload.cs
- XhtmlConformanceSection.cs
- WebServiceMethodData.cs
- InkCollectionBehavior.cs
- ZipIORawDataFileBlock.cs
- WinInet.cs
- ToolTip.cs
- Activator.cs
- TransformerInfoCollection.cs
- CodeTypeReferenceCollection.cs
- CapabilitiesAssignment.cs
- handlecollector.cs
- CompilationLock.cs
- SchemaImporterExtensionsSection.cs
- BinHexDecoder.cs
- WebPartActionVerb.cs
- DataGridViewMethods.cs
- XmlReflectionImporter.cs
- ResXBuildProvider.cs
- GenericPrincipal.cs
- EmptyReadOnlyDictionaryInternal.cs
- UniqueID.cs
- XPathAncestorIterator.cs
- InternalPolicyElement.cs
- EventWaitHandleSecurity.cs
- IgnorePropertiesAttribute.cs
- AutomationEvent.cs
- LoginViewDesigner.cs
- LifetimeServices.cs
- SoapCodeExporter.cs
- CatalogZoneBase.cs
- CurrencyWrapper.cs
- GridViewAutomationPeer.cs
- ByteStreamBufferedMessageData.cs
- HotSpot.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- ErrorReporting.cs
- CodeIdentifiers.cs
- XmlSerializerVersionAttribute.cs
- ColumnMapProcessor.cs
- MexNamedPipeBindingCollectionElement.cs
- Adorner.cs
- Literal.cs
- FormDesigner.cs
- FrameworkPropertyMetadata.cs
- Positioning.cs
- ErrorHandlerFaultInfo.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- FileSystemEventArgs.cs
- DecoderReplacementFallback.cs
- ResumeStoryboard.cs
- XmlSchemaObject.cs
- CqlWriter.cs
- SafeProcessHandle.cs
- PerformanceCounterPermissionEntryCollection.cs
- GridViewUpdatedEventArgs.cs
- RpcCryptoContext.cs
- EventWaitHandleSecurity.cs
- CurrentChangingEventArgs.cs
- SignHashRequest.cs
- StylusPlugin.cs
- WindowsSlider.cs
- Page.cs
- GetKeyedHashRequest.cs
- VisualStateChangedEventArgs.cs
- GridItemProviderWrapper.cs
- LayeredChannelFactory.cs
- httpapplicationstate.cs
- MembershipSection.cs
- EndpointDiscoveryMetadataCD1.cs
- TableLayoutPanelCodeDomSerializer.cs
- WebConfigurationHostFileChange.cs
- RtfControlWordInfo.cs
- SchemaNamespaceManager.cs
- DataBinding.cs
- Collection.cs
- RoutedCommand.cs
- WebPartMenuStyle.cs
- DataChangedEventManager.cs
- WsatServiceAddress.cs
- StateRuntime.cs
- BoundField.cs
- TraceContextRecord.cs
- RangeValidator.cs
- ToolStripItemTextRenderEventArgs.cs
- DataBinder.cs
- AtomServiceDocumentSerializer.cs
- ProcessStartInfo.cs
- PanelDesigner.cs
- JsonByteArrayDataContract.cs
- ResizeGrip.cs
- DocumentAutomationPeer.cs
- HideDisabledControlAdapter.cs