Interface IDecorator<T>
Defines a decorator that exposes the inner decorated type.
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public interface IDecorator<out T>
Type Parameters
Name | Description |
---|---|
T | The type of the inner decorated object. This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. |
Properties
| Improve this Doc View SourceInner
Gets the inner object of this decorator.
Declaration
T Inner { get; }
Property Value
Type | Description |
---|---|
T | The inner object of this decorator. |