I have 2 Console Applications in C#: App1 and App2 with Setting Properties access set to public and I follow some instructions:
1.- I set Property setting App2 'Name' from App1
App2.Properties.Settings.Default.Name = "John"
2.- I run App1 and it prints our App2.Name Property Setting as expected.
App2.Properties.Settings.Default.Name
3.- I run App2, to test if property is saved from App1. It does not show the property value: John
Properties.Settings.Default.Name
Question:
Why property is saved correcty and shown in App1 scope, but when I run App2 (which has declared the property Name) does not?
If my approach is not valid; HOw can I set Setting Properties from an external Console Application?