Interface IAppendableData<T>
An interface for data that is to be appended to at runtime.
public interface IAppendableData<T>
Type Parameters
TThe 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
dataTThe data to append.