namespace ExampleLib
{
///
/// Since the examples do not run as a service, this interface provides a way
/// for the implementation to signal that it has finished and the example can be closed.
///
public interface IExampleState
{
///
/// Signals the Program that the example has finished and the application can be closed.
///
void Done();
}
}