To configure the store:
IMySettings settings = new ConfigurationBuilder<IMySettings>()
.UseInMemoryDictionary()
.Build();
The store supports reading and writing, and stores configuration in the application memory. When application restarts all the setting values are lost. You may want to use this store for debugging or testing, other that that it has no real applications.
Collections are supported by using the flatline syntax.