diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-24 16:22:03 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-24 16:22:03 +0300 |
commit | 24024b5729c1c44bb01cb29813868743d1753e31 (patch) | |
tree | 673a1c1102e04adee36be8ded4934d2e40794fef /Source/AddIn/FileDialog.cs | |
parent | 2a4076d6eef1b4556f6af8cb074638d440927c5e (diff) |
MergeTool, MemoryUtil anf stuff
Diffstat (limited to 'Source/AddIn/FileDialog.cs')
-rw-r--r-- | Source/AddIn/FileDialog.cs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Source/AddIn/FileDialog.cs b/Source/AddIn/FileDialog.cs deleted file mode 100644 index a7e2144..0000000 --- a/Source/AddIn/FileDialog.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System.Windows.Forms; - -namespace RehauSku -{ - static class FileDialog - { - public static string GetFilePath() - { - string filePath = string.Empty; - - using (OpenFileDialog dialog = new OpenFileDialog()) - { - dialog.Filter = "Все файлы (*.*)|*.*"; - - if (dialog.ShowDialog() == DialogResult.OK) - { - filePath = dialog.FileName; - } - } - - return filePath; - } - } -} |