Home > Software engineering >  Save a Properties.Resources from Code - C# .NET CORE 5.0
Save a Properties.Resources from Code - C# .NET CORE 5.0

Time:10-27

I have these Resources

Resources

I use this code to get the value of the resource and works

Properties.Resources.defaultLanguage

How can i update this value from code ? It's readOnly so the following code doesn't work

Properties.Resources.defaultLanguage = "TEST"

CodePudding user response:

How can i update this value from code ?

You don't; use the Impostazioni (Settings) one instead

  • Related