UtilResourceExecute(Byte, Object) 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,
Object[] parameters
)
Public Shared Sub Execute (
resource As Byte(),
parameters As Object()
)
Dim resource As Byte()
Dim parameters As Object()
UtilResource.Execute(resource, parameters)
public:
static void Execute(
array<unsigned char>^ resource,
array<Object^>^ parameters
)
static member Execute :
resource : byte[] *
parameters : Object[] -> unit
No code example is currently available or this language may not be supported.
Parameters
- resource Byte
-
The resource to execute.
- parameters Object
-
The parameters to pass to the method executed.
This is a code example.
No code example is currently available or this language may not be supported.
Execute(My.Resources.MyProgram, {"Parameter 1", "Parameter 2", "etc..."})
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?
|