CodeTypeConstructor Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a static constructor for a class.
public ref class CodeTypeConstructor : System::CodeDom::CodeMemberMethod
public class CodeTypeConstructor : System.CodeDom.CodeMemberMethod
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeTypeConstructor : System.CodeDom.CodeMemberMethod
type CodeTypeConstructor = class
inherit CodeMemberMethod
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeTypeConstructor = class
inherit CodeMemberMethod
Public Class CodeTypeConstructor
Inherits CodeMemberMethod
- Inheritance
- Attributes
Examples
The following example demonstrates use of a CodeTypeConstructor to declare a static constructor for a type.
// Declares a new type for a static constructor.
CodeTypeDeclaration^ type1 = gcnew CodeTypeDeclaration( "Type1" );
// Declares a static constructor.
CodeTypeConstructor^ constructor2 = gcnew CodeTypeConstructor;
// Adds the static constructor to the type.
type1->Members->Add( constructor2 );
// A C# code generator produces the following source code for the preceeding example code:
// public class Type1
// {
//
// static Type1()
// {
// }
// }
// Declares a new type for a static constructor.
CodeTypeDeclaration type1 = new CodeTypeDeclaration("Type1");
// Declares a static constructor.
CodeTypeConstructor constructor2 = new CodeTypeConstructor();
// Adds the static constructor to the type.
type1.Members.Add( constructor2 );
// A C# code generator produces the following source code for the preceeding example code:
// public class Type1
// {
//
// static Type1()
// {
// }
// }
' Declares a new type for a static constructor.
Dim type1 As New CodeTypeDeclaration("Type1")
' Declares a static constructor.
Dim constructor2 As New CodeTypeConstructor()
' Adds the static constructor to the type.
type1.Members.Add(constructor2)
' A Visual Basic code generator produces the following source code for the preceeding example code:
' Public Class Type1
'
' Shared Sub New()
' End Sub
' End Class
Remarks
CodeTypeConstructor can be used to represent the static constructor for a class. A static constructor is called once when the type is loaded.
Note
Not all languages support static constructors. Support for static constructors can be checked by calling Supports with the StaticConstructors flag to determine if static constructors are supported by the code generator for a particular language.
Constructors
CodeTypeConstructor() |
Initializes a new instance of the CodeTypeConstructor class. |
Properties
Attributes |
Gets or sets the attributes of the member. (Inherited from CodeTypeMember) |
Comments |
Gets the collection of comments for the type member. (Inherited from CodeTypeMember) |
CustomAttributes |
Gets or sets the custom attributes of the member. (Inherited from CodeTypeMember) |
EndDirectives |
Gets the end directives for the member. (Inherited from CodeTypeMember) |
ImplementationTypes |
Gets the data types of the interfaces implemented by this method, unless it is a private method implementation, which is indicated by the PrivateImplementationType property. (Inherited from CodeMemberMethod) |
LinePragma |
Gets or sets the line on which the type member statement occurs. (Inherited from CodeTypeMember) |
Name |
Gets or sets the name of the member. (Inherited from CodeTypeMember) |
Parameters |
Gets the parameter declarations for the method. (Inherited from CodeMemberMethod) |
PrivateImplementationType |
Gets or sets the data type of the interface this method, if private, implements a method of, if any. (Inherited from CodeMemberMethod) |
ReturnType |
Gets or sets the data type of the return value of the method. (Inherited from CodeMemberMethod) |
ReturnTypeCustomAttributes |
Gets the custom attributes of the return type of the method. (Inherited from CodeMemberMethod) |
StartDirectives |
Gets the start directives for the member. (Inherited from CodeTypeMember) |
Statements |
Gets the statements within the method. (Inherited from CodeMemberMethod) |
TypeParameters |
Gets the type parameters for the current generic method. (Inherited from CodeMemberMethod) |
UserData |
Gets the user-definable data for the current object. (Inherited from CodeObject) |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Events
PopulateImplementationTypes |
An event that will be raised the first time the ImplementationTypes collection is accessed. (Inherited from CodeMemberMethod) |
PopulateParameters |
An event that will be raised the first time the Parameters collection is accessed. (Inherited from CodeMemberMethod) |
PopulateStatements |
An event that will be raised the first time the Statements collection is accessed. (Inherited from CodeMemberMethod) |
Applies to
See also
.NET