ModuleBuilder.SetUserEntryPoint(MethodInfo) Method

Definition

Sets the user entry point.

C#
public void SetUserEntryPoint(System.Reflection.MethodInfo entryPoint);

Parameters

entryPoint
MethodInfo

The user entry point.

Exceptions

entryPoint is null.

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

-or-

entryPoint is not contained in this dynamic module.

Remarks

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.

Note

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.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1