Interface IAppendableData<T>
An interface for data that is to be appended to at runtime.
public interface IAppendableData<T>
Type Parameters
T
The type that can be appended to the IAppendableData<T>.
- Extension Methods
Methods
Append(T)
Appends the data
to the current IAppendableData<T>.
void Append(T data)
Parameters
data
TThe data to append.