Launches a Skewworks Application in a new AppDomain.

Namespace: Skewworks.NETMF
Assembly: Skewworks.NETMF.Core (in Skewworks.NETMF.Core.dll) Version: 2.5.0.0 (2.5.0.0)

Syntax

C#
public static bool LaunchApplication(
	byte[] appData,
	string[] args = null
)

Parameters

appData
Type: array<System..::..Byte>[]()[][]
Raw bytes of application's PE file
args (Optional)
Type: array<System..::..String>[]()[][]
Arguments to pass to application

Return Value

Type: Boolean

[Missing <returns> documentation for "M:Skewworks.NETMF.Core.LaunchApplication(System.Byte[],System.String[])"]

Remarks

This is a non-blocking method which allows you to have multiple applications running side-by-side. To start an application blocking use ShellNETMF(array<Byte>[]()[][], String)

See Also