I have a Windows 10 IoT app developed in C#, and I need to relaunch the app when the configuration has changed. How can the app relaunch itself programmatically?
Base on the Richard's comments I have resolved as follows:
The code for close the app is:
private void Exit()
{
Windows.ApplicationModel.Core.CoreApplication.Exit();
}