Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ModuleBuilder::SetUserEntryPoint Method (MethodInfo^)

 

Sets the user entry point.

Namespace:   System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

public:
void SetUserEntryPoint(
	MethodInfo^ entryPoint
)

Parameters

entryPoint
Type: System.Reflection::MethodInfo^

The user entry point.

Exception Condition
ArgumentNullException

entryPoint is null.

InvalidOperationException

This method is called on a dynamic module that is not a debug module.

-or-

entryPoint is not contained in this dynamic module.

The compiler might generate a startup stub before calling user main. The startup stub will be the entry point. While the user main will be the user entry point so that debugger will not step into the compiler entry point.

System_CAPS_noteNote

Starting with the .NET Framework 2.0 Service Pack 1, this member no longer requires ReflectionPermission with the ReflectionPermissionFlag::ReflectionEmit flag. (See Security Issues in Reflection Emit.) To use this functionality, your application should target the .NET Framework 3.5 or later.

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Return to top
Show:
© 2017 Microsoft