H
HansvB69
Guest
Hi,
I am trying to convert a .net 4.8 winforms application to .net core. The only thing that seems to be different is how settings are used. I used to read settings like this:
this.ActivateLogging = Properties.Settings.Default.LoggingActivate;
and save them like this:
Properties.Settings.Default.LoggingActivate = this.ActivateLogging;
With .net Core this is not possible anymore. I googled for it but didn't find anything for winforms. How can i save and load settings wit .net Core?
Greetings Hans
Continue reading...
I am trying to convert a .net 4.8 winforms application to .net core. The only thing that seems to be different is how settings are used. I used to read settings like this:
this.ActivateLogging = Properties.Settings.Default.LoggingActivate;
and save them like this:
Properties.Settings.Default.LoggingActivate = this.ActivateLogging;
With .net Core this is not possible anymore. I googled for it but didn't find anything for winforms. How can i save and load settings wit .net Core?
Greetings Hans
Continue reading...