Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeMemberField.cs / 1 / CodeMemberField.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 CodeMemberField : CodeTypeMember { private CodeTypeReference type; private CodeExpression initExpression; ////// Represents a class field member. /// ////// public CodeMemberField() { } ////// Initializes a new ///. /// /// public CodeMemberField(CodeTypeReference type, string name) { Type = type; Name = name; } ////// Initializes a new ///with the specified member field type and /// name. /// /// public CodeMemberField(string type, string name) { Type = new CodeTypeReference(type); Name = name; } ///[To be supplied.] ////// public CodeMemberField(Type type, string name) { Type = new CodeTypeReference(type); Name = name; } ///[To be supplied.] ////// public CodeTypeReference Type { get { if (type == null) { type = new CodeTypeReference(""); } return type; } set { type = value; } } ////// Gets or sets the member field type. /// ////// public CodeExpression InitExpression { get { return initExpression; } set { initExpression = value; } } } }/// Gets or sets the initialization expression for the member field. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Persist.cs
- ClientFormsIdentity.cs
- SqlTypeConverter.cs
- DbProviderServices.cs
- DataGridViewRowsAddedEventArgs.cs
- PenCursorManager.cs
- FamilyTypefaceCollection.cs
- UserMapPath.cs
- TypeBuilder.cs
- DataGridViewRowsRemovedEventArgs.cs
- _AutoWebProxyScriptWrapper.cs
- SemanticKeyElement.cs
- PropertyDescriptorComparer.cs
- CompositeScriptReference.cs
- ActivityCodeDomSerializer.cs
- COM2ExtendedTypeConverter.cs
- TextReader.cs
- TableLayoutPanelDesigner.cs
- FixedPage.cs
- UInt64Converter.cs
- HttpHandlerActionCollection.cs
- XPathNavigatorReader.cs
- DataGridViewCellCollection.cs
- ImageCodecInfoPrivate.cs
- ListViewItem.cs
- QueryOperationResponseOfT.cs
- ChtmlCommandAdapter.cs
- DbMetaDataCollectionNames.cs
- EtwTrackingParticipant.cs
- FreezableCollection.cs
- OrderedHashRepartitionStream.cs
- DataSourceHelper.cs
- Point3DAnimationUsingKeyFrames.cs
- Serializer.cs
- PowerModeChangedEventArgs.cs
- TreeViewEvent.cs
- ItemCollection.cs
- RegexCharClass.cs
- TypeHelper.cs
- AppDomainShutdownMonitor.cs
- DataBindingExpressionBuilder.cs
- SqlNotificationRequest.cs
- ToolStripGripRenderEventArgs.cs
- SqlCaseSimplifier.cs
- storepermissionattribute.cs
- ManagedFilter.cs
- MenuTracker.cs
- Pen.cs
- HtmlControlPersistable.cs
- CloseCryptoHandleRequest.cs
- SqlError.cs
- ApplicationId.cs
- SqlConnectionString.cs
- InputMethod.cs
- IntSecurity.cs
- VScrollBar.cs
- ProfessionalColors.cs
- ExtensionWindow.cs
- SQLInt64Storage.cs
- _SslState.cs
- XamlStyleSerializer.cs
- IApplicationTrustManager.cs
- DataObjectEventArgs.cs
- X509CertificateStore.cs
- SqlMethods.cs
- ProfileService.cs
- DataGridViewColumnConverter.cs
- SignatureToken.cs
- PermissionToken.cs
- IdentifierService.cs
- PropertyInfo.cs
- SyndicationDeserializer.cs
- NativeMethods.cs
- DetailsViewPagerRow.cs
- WebPartManagerInternals.cs
- DbDataReader.cs
- EventLogPermissionEntry.cs
- SelectionWordBreaker.cs
- JsonServiceDocumentSerializer.cs
- WpfXamlMember.cs
- ConfigurationManagerHelperFactory.cs
- SafeBitVector32.cs
- XamlStyleSerializer.cs
- WorkflowServiceHost.cs
- TopClause.cs
- UserMapPath.cs
- Hex.cs
- IdentityModelDictionary.cs
- _NetRes.cs
- Cursor.cs
- ClaimTypes.cs
- Sql8ExpressionRewriter.cs
- WebPartMenu.cs
- ClientSettingsStore.cs
- MediaPlayerState.cs
- PropertyGridView.cs
- DateTimePicker.cs
- XMLSchema.cs
- SmtpSection.cs
- DBCommandBuilder.cs