C# Class CsDebugScript.UI.LazyUIResult

Helper class that represents UIElement to be created as result of executing interactive script. This class is needed since UI operations must be done in STA thread, so it will be lazily evaluated in UI thread.
显示文件 Open project: southpolenator/WinDbgCs Class Usage Examples

Public Methods

Method Description
LazyUIResult ( Func creator ) : System

Initializes a new instance of the LazyUIResult class.

Method Details

LazyUIResult() public method

Initializes a new instance of the LazyUIResult class.
public LazyUIResult ( Func creator ) : System
creator Func The lazy creator.
return System