Class IntegerDecoratorExtensions
- Namespace
- Cuemon
- Assembly
- Cuemon.Core.dll
Extension methods for the short, int and long structs hidden behind the IDecorator<T> interface.
public static class IntegerDecoratorExtensions
- Inheritance
-
IntegerDecoratorExtensions
Methods
Max(IDecorator<int>, int)
Returns the larger of two 32-bit signed integers.
public static int Max(this IDecorator<int> decorator, int minimum)
Parameters
decorator
IDecorator<int>The IDecorator<T> to extend.
minimum
intThe second of two 32-bit signed integers to compare.
Returns
See Also
IDecorator<T>
Decorator<T>