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
- Message.cs
- HttpResponseHeader.cs
- FunctionImportMapping.cs
- TextEndOfSegment.cs
- DefaultWorkflowTransactionService.cs
- StyleHelper.cs
- TextSearch.cs
- FileDialog_Vista_Interop.cs
- PaperSource.cs
- SqlFormatter.cs
- FunctionParameter.cs
- _ShellExpression.cs
- MsmqException.cs
- Decoder.cs
- ConfigPathUtility.cs
- TemplatedAdorner.cs
- VBCodeProvider.cs
- XmlSchemaAll.cs
- Debugger.cs
- SqlBulkCopyColumnMappingCollection.cs
- RangeBase.cs
- SafeWaitHandle.cs
- PolicyLevel.cs
- ChameleonKey.cs
- KeyTimeConverter.cs
- ExpressionEditorAttribute.cs
- TypeElementCollection.cs
- DataBinding.cs
- FunctionMappingTranslator.cs
- FixedSOMPageElement.cs
- Formatter.cs
- BinaryFormatterWriter.cs
- Emitter.cs
- IgnoreSectionHandler.cs
- EtwTrace.cs
- PrtCap_Reader.cs
- FilterQuery.cs
- Rules.cs
- DateTimeParse.cs
- Point3DValueSerializer.cs
- Utils.cs
- ValidationErrorEventArgs.cs
- URLString.cs
- QueryOperationResponseOfT.cs
- AlphabeticalEnumConverter.cs
- initElementDictionary.cs
- DBSchemaRow.cs
- EventDescriptor.cs
- EntityModelSchemaGenerator.cs
- DiagnosticsConfigurationHandler.cs
- DataGridViewCellStyleChangedEventArgs.cs
- StyleCollection.cs
- PnrpPeerResolverElement.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- WebRequestModuleElementCollection.cs
- TabItemAutomationPeer.cs
- X509UI.cs
- FormViewPagerRow.cs
- StoryFragments.cs
- VideoDrawing.cs
- Opcode.cs
- ImmutableCollection.cs
- PageAsyncTask.cs
- OleDbException.cs
- ContourSegment.cs
- Border.cs
- ProviderMetadataCachedInformation.cs
- BitmapEffectInput.cs
- DataBinding.cs
- RtfNavigator.cs
- Vector3DAnimation.cs
- StatusBarItem.cs
- VirtualPathUtility.cs
- ToolboxItemCollection.cs
- SolidBrush.cs
- DefaultHttpHandler.cs
- LinearGradientBrush.cs
- ObjectPropertyMapping.cs
- TableAdapterManagerHelper.cs
- AssemblyBuilderData.cs
- MemberHolder.cs
- UIElement3D.cs
- DbConnectionInternal.cs
- MissingManifestResourceException.cs
- InternalConfigRoot.cs
- RadioButton.cs
- List.cs
- PathSegment.cs
- RegexWorker.cs
- CroppedBitmap.cs
- DataGridViewAutoSizeModeEventArgs.cs
- StrongNamePublicKeyBlob.cs
- EncryptedReference.cs
- MouseGestureConverter.cs
- AtomMaterializer.cs
- PropertyTabChangedEvent.cs
- ContractNamespaceAttribute.cs
- DataGridPageChangedEventArgs.cs
- Camera.cs
- Fault.cs