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
- Attributes.cs
- ModelTreeManager.cs
- RestClientProxyHandler.cs
- EllipticalNodeOperations.cs
- SiteMapNodeItem.cs
- AnimationLayer.cs
- RecognizerStateChangedEventArgs.cs
- GenericEnumConverter.cs
- EncoderBestFitFallback.cs
- AccessControlEntry.cs
- DataExpression.cs
- TemplatedEditableDesignerRegion.cs
- NaturalLanguageHyphenator.cs
- ToolStripControlHost.cs
- FloaterBaseParaClient.cs
- CellPartitioner.cs
- MouseButtonEventArgs.cs
- SamlAdvice.cs
- Util.cs
- HostingEnvironmentException.cs
- ObjectDataSource.cs
- HelpKeywordAttribute.cs
- XmlQualifiedNameTest.cs
- RecommendedAsConfigurableAttribute.cs
- XmlAttribute.cs
- ComponentCommands.cs
- Privilege.cs
- SiteOfOriginContainer.cs
- MenuBase.cs
- XmlReflectionMember.cs
- IPHostEntry.cs
- VerificationException.cs
- ProgressiveCrcCalculatingStream.cs
- WebRequestModulesSection.cs
- HttpConfigurationContext.cs
- EntityDataSourceDesignerHelper.cs
- _DisconnectOverlappedAsyncResult.cs
- OneOfElement.cs
- PageMediaType.cs
- DataGridLength.cs
- HostingEnvironmentSection.cs
- DataGridViewCellStyleConverter.cs
- CodeMethodReturnStatement.cs
- ControlHelper.cs
- AuthenticatedStream.cs
- GridViewRowEventArgs.cs
- PanningMessageFilter.cs
- TreeView.cs
- GeneralTransform2DTo3D.cs
- _DisconnectOverlappedAsyncResult.cs
- UndirectedGraph.cs
- RIPEMD160Managed.cs
- SafeProcessHandle.cs
- ArrayTypeMismatchException.cs
- ExecutionContext.cs
- RankException.cs
- Item.cs
- DES.cs
- WebBrowserBase.cs
- SqlBooleanMismatchVisitor.cs
- XmlDocumentFragment.cs
- MetaModel.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- PartitionerQueryOperator.cs
- WebPartZone.cs
- SQLBoolean.cs
- SoapSchemaMember.cs
- DataBoundControl.cs
- SiteMapPath.cs
- TextSpanModifier.cs
- DataGridColumnCollection.cs
- FormViewRow.cs
- FloaterBaseParagraph.cs
- SqlDataReader.cs
- WebServiceHost.cs
- HttpRawResponse.cs
- FormParameter.cs
- DrawingContext.cs
- EditorZoneBase.cs
- CodeDOMUtility.cs
- ServerType.cs
- LogicalTreeHelper.cs
- HwndAppCommandInputProvider.cs
- SelectionService.cs
- Aggregates.cs
- EmptyEnumerator.cs
- ReaderWriterLock.cs
- StringBlob.cs
- DelayLoadType.cs
- CmsUtils.cs
- OutputCacheModule.cs
- TreeViewCancelEvent.cs
- GuidConverter.cs
- EtwTrackingBehavior.cs
- MemberAccessException.cs
- DataRelation.cs
- RadioButton.cs
- RequestTimeoutManager.cs
- UnknownBitmapDecoder.cs
- DoubleMinMaxAggregationOperator.cs