Code:
/ DotNET / DotNET / 8.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
- XmlSchemaObject.cs
- RefreshEventArgs.cs
- ReflectionUtil.cs
- WebServiceTypeData.cs
- HttpRequestBase.cs
- IncrementalHitTester.cs
- DataGridBoolColumn.cs
- mda.cs
- SafeCryptHandles.cs
- TimeSpanSecondsConverter.cs
- ResourceFallbackManager.cs
- GeometryValueSerializer.cs
- WorkflowItemPresenter.cs
- XmlSerializerFactory.cs
- StandardOleMarshalObject.cs
- PathSegment.cs
- OutputCacheProfileCollection.cs
- TypeDelegator.cs
- TypeAccessException.cs
- LassoHelper.cs
- ManagedFilter.cs
- StateWorkerRequest.cs
- DispatchChannelSink.cs
- RuntimeIdentifierPropertyAttribute.cs
- QilChoice.cs
- StorageEntityTypeMapping.cs
- TrackBar.cs
- RowToFieldTransformer.cs
- DbQueryCommandTree.cs
- safex509handles.cs
- WebBrowser.cs
- WebPartConnectionsCancelEventArgs.cs
- RelatedCurrencyManager.cs
- BamlBinaryWriter.cs
- Nullable.cs
- StandardOleMarshalObject.cs
- SafeReversePInvokeHandle.cs
- BitStream.cs
- SqlGatherProducedAliases.cs
- MetadataCacheItem.cs
- BadImageFormatException.cs
- PerformanceCounterPermission.cs
- XmlBinaryReader.cs
- QueryCacheManager.cs
- ToolStripOverflowButton.cs
- StructuralObject.cs
- HMACRIPEMD160.cs
- XmlSubtreeReader.cs
- VsPropertyGrid.cs
- WebOperationContext.cs
- SoapIncludeAttribute.cs
- NamedPipeAppDomainProtocolHandler.cs
- TextMetrics.cs
- CommandDevice.cs
- ReadOnlyCollectionBase.cs
- HandlerWithFactory.cs
- WeakReferenceList.cs
- BackStopAuthenticationModule.cs
- MediaSystem.cs
- ActivityDesignerLayoutSerializers.cs
- FormCollection.cs
- NotCondition.cs
- DesignObjectWrapper.cs
- Int64AnimationBase.cs
- Brush.cs
- AdRotatorDesigner.cs
- Msec.cs
- IInstanceContextProvider.cs
- FlowLayoutPanel.cs
- BaseResourcesBuildProvider.cs
- ButtonBaseAdapter.cs
- AnnotationResourceCollection.cs
- HighContrastHelper.cs
- TemplateEditingService.cs
- RuleSettings.cs
- SemaphoreSecurity.cs
- Mappings.cs
- EndOfStreamException.cs
- InheritanceContextChangedEventManager.cs
- Rotation3DAnimationUsingKeyFrames.cs
- CodeCommentStatementCollection.cs
- WindowsScrollBar.cs
- SelectorItemAutomationPeer.cs
- _BufferOffsetSize.cs
- RedistVersionInfo.cs
- TTSEngineTypes.cs
- ListComponentEditorPage.cs
- QueryOutputWriterV1.cs
- ObjectNotFoundException.cs
- Geometry3D.cs
- TraceAsyncResult.cs
- MaterialGroup.cs
- FormView.cs
- RTLAwareMessageBox.cs
- WindowsToolbarAsMenu.cs
- TextBlockAutomationPeer.cs
- ConfigurationSchemaErrors.cs
- IdentifierService.cs
- CorePropertiesFilter.cs
- Matrix.cs