C# what's best way to save settings and being able to edit them

Viewed 37

I'm working on a project that contains two C# windows form solutions.

Solution 1: a fundamental form designed to put certain information (SMTP information to be specific)

Solution 2: another form that will use saved SMTP information to send Emails.

I'm looking for a way to save the SMTP information, without having to rely on External files and being able to edit them programmatically. Basically, modify the SMTP information using the first form and they'll be saved until you decide to edit them.

Bear in mind that I have to keep the solutions separate and not use a single solution because one of them because the second solution is going to be compiled alone programmatically by the first solution using MSBuild

0 Answers
Related