UtilResourceExecute(Byte) Method
Loads a resource in memory and executes its main entrypoint.
The resource must be a .NET assembly.
Namespace: DevCase.Core.Application.ResourcesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void Execute(
byte[] resource
)
Public Shared Sub Execute (
resource As Byte()
)
Dim resource As Byte()
UtilResource.Execute(resource)
public:
static void Execute(
array<unsigned char>^ resource
)
static member Execute :
resource : byte[] -> unit
No code example is currently available or this language may not be supported.
Parameters
- resource Byte
-
The resource to execute.
This is a code example.
No code example is currently available or this language may not be supported.
Execute(My.Resources.MyProgram)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
EntryPointNotFoundException
|
Entrypoint not found in the specified resource. Are you sure it is a .NET assembly?
|