Class Decorator<T>
Provides a generic way to support the implementation of the decorator pattern. Implements the IDecorator<T>
Implements
IDecorator<T>
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public class Decorator<T> : IDecorator<T>
Type Parameters
Name | Description |
---|---|
T | The type of the inner decorated object. |
Properties
| Improve this Doc View SourceInner
Gets the inner object of this decorator.
Declaration
public T Inner { get; }
Property Value
Type | Description |
---|---|
T | The inner object of this decorator. |
Implements
Extension Methods
See Also
IDecorator<T>