Class IntegerDecoratorExtensions
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public static class IntegerDecoratorExtensions
Methods
| Improve this Doc View SourceMax(IDecorator<Int32>, Int32)
Returns the larger of two 32-bit signed integers.
Declaration
public static int Max(this IDecorator<int> decorator, int minimum)
Parameters
Type | Name | Description |
---|---|---|
IDecorator<Int32> | decorator | The IDecorator<T> to extend. |
Int32 | minimum | The second of two 32-bit signed integers to compare. |
Returns
Type | Description |
---|---|
Int32 | Parameter the enclosed Int32 of the specified |
See Also
IDecorator<T>
Decorator<T>