Interface ICombinable<T>
Interface for combining two objects of the same type.
public interface ICombinable<T>
Type Parameters
T
The type of object to combine.
Methods
Combine(T)
Combine two objects of the same type.
T Combine(T other)
Parameters
other
TThe other object to combine with this one.
Returns
- T
The combined object.