Interface IEnhancer
Enhances the specified type by some kind of technique.
Namespace: Cortex.Net
Assembly: Cortex.Net.dll
Syntax
public interface IEnhancer
Methods
| Improve this Doc View SourceEnhance<T>(T, T, String)
Enhances the newvalue.
Declaration
T Enhance<T>(T newValue, T originalValue, string name)
Parameters
Type | Name | Description |
---|---|---|
T | newValue | The new value. |
T | originalValue | The original value. |
System.String | name | The name of this object. |
Returns
Type | Description |
---|---|
T | A new value, but enhanced. |
Type Parameters
Name | Description |
---|---|
T | The type to enhance. |