This documentation is archived and is not being maintained.
CodeMemberField Class
Visual Studio 2008
Represents a declaration for a field of a type.
Assembly: System (in System.dll)
The following example demonstrates use of a CodeMemberField to declare a field of type string named testStringField.
' Declares a type to contain a field and a constructor method. Dim type1 As New CodeTypeDeclaration("FieldTest") ' Declares a field of type String named testStringField. Dim field1 As New CodeMemberField("System.String", "testStringField") type1.Members.Add(field1) ' Declares an empty type constructor. Dim constructor1 As New CodeConstructor() constructor1.Attributes = MemberAttributes.Public type1.Members.Add(constructor1) ' A Visual Basic code generator produces the following source code for the preceeding example code: ' Public Class FieldTest ' ' Private TestStringField As String ' ' Public Sub New() ' MyBase.New() ' End Sub ' ' End Class
' This example demonstrates declaring a public constant type member field. ' When declaring a public constant type member field, you must set a particular ' access and scope mask to the member attributes of the field in order for the ' code generator to properly generate the field as a constant field. ' Declares an integer field using a CodeMemberField Dim constPublicField As New CodeMemberField(GetType(Integer), "testConstPublicField") ' Resets the access and scope mask bit flags of the member attributes of the field ' before setting the member attributes of the field to public and constant. constPublicField.Attributes = constPublicField.Attributes And Not MemberAttributes.AccessMask And Not MemberAttributes.ScopeMask Or MemberAttributes.Public Or MemberAttributes.Const
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeTypeMember
System.CodeDom.CodeMemberField
System.CodeDom.CodeObject
System.CodeDom.CodeTypeMember
System.CodeDom.CodeMemberField
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: