PlatformInvoke Method (Action) |
Invoke the specified action within the context of this platform
Namespace:
Eto
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public void Invoke(
Action action
)
Public Sub Invoke (
action As Action
)
member Invoke :
action : Action -> unit
Parameters
- action
- Type: SystemAction
Action to execute.
Remarks
This is useful when you are using multiple platforms at the same time, and gives you an easy
way to execute code within the context of this platform.
See Also