예제 #1
0
 /// <summary>
 /// Writes a <see cref="int"/> value to the settings file which is stored using the specified lookup <paramref name="key"/>. If the <paramref name="key"/> already exists, the existing value will be overwritten.
 /// </summary>
 /// <param name="key">The lookup key for the <paramref name="value"/>.</param>
 /// <param name="value">The settings value to save to the file.</param>
 public static void WriteInt(string key, int value)
 {
     AppSettingsConnector.AddUpdateAppSettings(key, value);
 }
예제 #2
0
 /// <summary>
 /// Writes a <see cref="bool"/> value to the settings file which is stored using the specified lookup <paramref name="key"/>. If the <paramref name="key"/> already exists, the existing value will be overwritten.
 /// </summary>
 /// <param name="key">The lookup key for the <paramref name="value"/>.</param>
 /// <param name="value">The settings value to save to the file.</param>
 public static void WriteBool(string key, bool value)
 {
     AppSettingsConnector.AddUpdateAppSettings(key, value);
 }
예제 #3
0
 /// <summary>
 /// Writes a <see cref="string"/> value to the settings file which is stored using the specified lookup <paramref name="key"/>. If the <paramref name="key"/> already exists, the existing value will be overwritten.
 /// </summary>
 /// <param name="key">The lookup key for the <paramref name="value"/>.</param>
 /// <param name="value">The settings value to save to the file.</param>
 public static void WriteString(string key, string value)
 {
     AppSettingsConnector.AddUpdateAppSettings(key, value);
 }
예제 #4
0
 /// <summary>
 /// Writes a <see cref="double"/> value to the settings file which is stored using the specified lookup <paramref name="key"/>. If the <paramref name="key"/> already exists, the existing value will be overwritten.
 /// </summary>
 /// <param name="key">The lookup key for the <paramref name="value"/>.</param>
 /// <param name="value">The settings value to save to the file.</param>
 public static void WriteDouble(string key, double value)
 {
     AppSettingsConnector.AddUpdateAppSettings(key, value);
 }