Method | Description | |
---|---|---|
Equals ( |
Determines whether the specified other instance is equal to the current Runnable.
|
|
Equals ( object obj ) : bool |
Determines whether the specified object is equal to the current Runnable.
|
|
GetHashCode ( ) : int |
Returns the has code of the inner action.
|
|
Run ( ) : void |
The entry point. Invokes the delegate passed to the constructor Runnable(Action).
|
|
Runnable ( System.Action action ) : System |
Construct a new instance of Runnable which calls action delegate with its Run method is invoked.
|
public Equals ( |
||
other |
/// The other |
|
return | bool |
public Equals ( object obj ) : bool | ||
obj | object |
/// The |
return | bool |
public Runnable ( System.Action action ) : System | ||
action | System.Action |
/// The delegate to be called when |
return | System |