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
- DataColumnMapping.cs
- TextServicesLoader.cs
- IsolatedStorageFileStream.cs
- CultureData.cs
- WebPartDisplayMode.cs
- ListView.cs
- ContextProperty.cs
- SelectedCellsChangedEventArgs.cs
- GlyphCache.cs
- ObjectComplexPropertyMapping.cs
- CultureMapper.cs
- SecuritySessionClientSettings.cs
- TypedRowGenerator.cs
- HttpConfigurationSystem.cs
- SiteMapDataSourceView.cs
- AutomationPatternInfo.cs
- RequestUriProcessor.cs
- DataContractSet.cs
- CultureInfoConverter.cs
- DeflateEmulationStream.cs
- AddInDeploymentState.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- PathFigure.cs
- ProfileBuildProvider.cs
- ErrorProvider.cs
- ResourceSetExpression.cs
- SerializationEventsCache.cs
- ObjectDisposedException.cs
- ColumnReorderedEventArgs.cs
- EdmRelationshipRoleAttribute.cs
- XslAstAnalyzer.cs
- AspProxy.cs
- XmlQueryTypeFactory.cs
- ACL.cs
- EpmHelper.cs
- CellTreeNode.cs
- TemplateBindingExtension.cs
- CompareInfo.cs
- EventLogPermission.cs
- BamlRecords.cs
- FormsIdentity.cs
- NeutralResourcesLanguageAttribute.cs
- ResourcesChangeInfo.cs
- StringFunctions.cs
- DataGridItemEventArgs.cs
- Stream.cs
- HScrollBar.cs
- ConfigurationSectionCollection.cs
- LoginName.cs
- SoapEnumAttribute.cs
- TextPointerBase.cs
- PassportAuthenticationModule.cs
- TypeInitializationException.cs
- IndicShape.cs
- QueryOperationResponseOfT.cs
- CompositeCollectionView.cs
- GridViewRow.cs
- SourceFileBuildProvider.cs
- StringResourceManager.cs
- PasswordBoxAutomationPeer.cs
- SocketAddress.cs
- CaseInsensitiveComparer.cs
- OleDbRowUpdatingEvent.cs
- HiddenFieldPageStatePersister.cs
- TiffBitmapEncoder.cs
- NativeRightsManagementAPIsStructures.cs
- ClosableStream.cs
- ApplicationException.cs
- HostingEnvironment.cs
- Size3DConverter.cs
- LambdaCompiler.Unary.cs
- JoinSymbol.cs
- PropertyInformationCollection.cs
- Descriptor.cs
- SiteMapProvider.cs
- CategoryAttribute.cs
- TCPListener.cs
- PenLineJoinValidation.cs
- DefaultAuthorizationContext.cs
- JoinTreeNode.cs
- MaskedTextBoxDesignerActionList.cs
- InteropAutomationProvider.cs
- HttpChannelHelper.cs
- CookieProtection.cs
- BaseAddressPrefixFilterElementCollection.cs
- StringConverter.cs
- UserMapPath.cs
- Switch.cs
- CounterCreationDataConverter.cs
- CalendarKeyboardHelper.cs
- TraceSection.cs
- CodeAccessSecurityEngine.cs
- TCPListener.cs
- Visual3D.cs
- StreamUpdate.cs
- SHA256.cs
- SafeLibraryHandle.cs
- FocusManager.cs
- Table.cs
- Subtree.cs