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
- BitVector32.cs
- FileDialogPermission.cs
- Floater.cs
- Stack.cs
- ParsedAttributeCollection.cs
- TypeToArgumentTypeConverter.cs
- CompositeFontInfo.cs
- WebBrowserSiteBase.cs
- StandardCommandToolStripMenuItem.cs
- FloaterBaseParagraph.cs
- DockingAttribute.cs
- Error.cs
- SqlDataSourceCache.cs
- CompilerError.cs
- InfoCardBaseException.cs
- SchemaExporter.cs
- AsnEncodedData.cs
- Timer.cs
- EncryptedPackage.cs
- TreeViewImageKeyConverter.cs
- Translator.cs
- DataGridViewUtilities.cs
- AuthorizationSection.cs
- AlternateViewCollection.cs
- MenuItemBindingCollection.cs
- FixedSOMLineRanges.cs
- Expression.DebuggerProxy.cs
- RowTypePropertyElement.cs
- DetailsView.cs
- CommandID.cs
- VectorAnimation.cs
- MetadataArtifactLoaderCompositeResource.cs
- CodeBinaryOperatorExpression.cs
- ReliabilityContractAttribute.cs
- MsmqIntegrationReceiveParameters.cs
- Operators.cs
- RewritingValidator.cs
- ColorDialog.cs
- CodeSnippetStatement.cs
- RotateTransform.cs
- TranslateTransform3D.cs
- ResourceBinder.cs
- ActivityValidator.cs
- AuthenticationSection.cs
- ClipboardProcessor.cs
- Type.cs
- GridViewUpdatedEventArgs.cs
- BindingSourceDesigner.cs
- WebPartManager.cs
- SurrogateChar.cs
- DataServices.cs
- IERequestCache.cs
- HtmlInputReset.cs
- WebResourceUtil.cs
- SR.cs
- XMLDiffLoader.cs
- MemberPath.cs
- NonVisualControlAttribute.cs
- SqlDataRecord.cs
- CompModSwitches.cs
- TdsParameterSetter.cs
- XamlParser.cs
- PartitionResolver.cs
- EndpointDiscoveryElement.cs
- XmlArrayAttribute.cs
- keycontainerpermission.cs
- SqlCacheDependencySection.cs
- Publisher.cs
- ActivityDesignerResources.cs
- SQLBytesStorage.cs
- NumberSubstitution.cs
- DataGridViewCellValidatingEventArgs.cs
- TreeViewItem.cs
- PromptEventArgs.cs
- TableLayoutPanelDesigner.cs
- FrameworkTemplate.cs
- TransformPattern.cs
- counter.cs
- DataColumnMappingCollection.cs
- SortedDictionary.cs
- WaitingCursor.cs
- WebPartManager.cs
- SessionIDManager.cs
- cookiecollection.cs
- Privilege.cs
- OrderByBuilder.cs
- DirectoryLocalQuery.cs
- ScrollChrome.cs
- NavigatorOutput.cs
- CaseInsensitiveHashCodeProvider.cs
- QueryableDataSourceHelper.cs
- VectorAnimationBase.cs
- PropertyEmitter.cs
- XmlNamespaceMapping.cs
- BrowsableAttribute.cs
- StringSource.cs
- SpinLock.cs
- ClientSection.cs
- cookiecollection.cs
- ObjectSecurity.cs