Class Tweaker
Provides a way to change any instance of the same generic type.
Inheritance
System.Object
Tweaker
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public static class Tweaker
Methods
| Improve this DocAdjust<T>(T, Func<T, T>)
Adjust the specified value with the function delegate tweaker.
Declaration
public static T Adjust<T>(T value, Func<T, T> tweaker)
Parameters
| Type | Name | Description |
|---|---|---|
| T | value | The value to adjust. |
| System.Func<T, T> | tweaker | The function delegate that will adjust the specified |
Returns
| Type | Description |
|---|---|
| T | The |
Type Parameters
| Name | Description |
|---|---|
| T | The type of the value to adjust. |