コード例 #1
0
 public virtual void Save(Stream stream)
 {
     SettingsHelper.Save(this, stream, SerializationType);
 }
コード例 #2
0
 public virtual bool Save(string filePath)
 {
     return(SettingsHelper.Save(this, filePath, SerializationType.Xml));
 }
コード例 #3
0
ファイル: SettingsBase.cs プロジェクト: yomigits/ShareX
 public bool Save(string filePath)
 {
     FilePath           = filePath;
     ApplicationVersion = Application.ProductVersion;
     return(SettingsHelper.Save(this, FilePath, SerializationType));
 }