diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-27 16:42:04 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-27 16:42:04 +0300 |
| commit | f99f56c619bed96ab7b75be8477dec6e504bad7e (patch) | |
| tree | 9fafdfb4e9fd62e4b7c1c1df2f1297b51a6f1688 /Software/Visual_Studio/Tango.Settings | |
| parent | 90e05a52a1a6a3b7f5bce8a619dd4e50ea10575d (diff) | |
| download | Tango-f99f56c619bed96ab7b75be8477dec6e504bad7e.tar.gz Tango-f99f56c619bed96ab7b75be8477dec6e504bad7e.zip | |
Implemented segment & brush stop remove.
Diffstat (limited to 'Software/Visual_Studio/Tango.Settings')
| -rw-r--r-- | Software/Visual_Studio/Tango.Settings/SettingsManager.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Settings/SettingsManager.cs b/Software/Visual_Studio/Tango.Settings/SettingsManager.cs index a9c5429de..34ac2ddfe 100644 --- a/Software/Visual_Studio/Tango.Settings/SettingsManager.cs +++ b/Software/Visual_Studio/Tango.Settings/SettingsManager.cs @@ -116,6 +116,14 @@ namespace Tango.Settings } /// <summary> + /// Determines whether a settings file exists. + /// </summary> + public virtual bool IsFileExists() + { + return File.Exists(FilePath); + } + + /// <summary> /// Saves settings. /// </summary> public virtual void Save() |
