diff options
| author | JayXKanz666 <[email protected]> | 2017-07-13 16:46:24 +0200 |
|---|---|---|
| committer | JayXKanz666 <[email protected]> | 2017-07-13 16:46:24 +0200 |
| commit | 264deb3774935da3faba95fef55a94227e3f2368 (patch) | |
| tree | 2eac43f957e8a20c3c773119155bc328c9851244 /TimeHACK.Engine/FileDialogBoxManager.cs | |
| parent | dd76075ce70c2ac31f01b2450c7f64009489dee9 (diff) | |
| download | histacom2-264deb3774935da3faba95fef55a94227e3f2368.tar.gz histacom2-264deb3774935da3faba95fef55a94227e3f2368.tar.bz2 histacom2-264deb3774935da3faba95fef55a94227e3f2368.zip | |
Fixed type names
-`String` replaced with `string`
-`Boolean` replaced with `bool`
Diffstat (limited to 'TimeHACK.Engine/FileDialogBoxManager.cs')
| -rw-r--r-- | TimeHACK.Engine/FileDialogBoxManager.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/TimeHACK.Engine/FileDialogBoxManager.cs b/TimeHACK.Engine/FileDialogBoxManager.cs index 334ebdd..f6d30ae 100644 --- a/TimeHACK.Engine/FileDialogBoxManager.cs +++ b/TimeHACK.Engine/FileDialogBoxManager.cs @@ -10,24 +10,24 @@ namespace TimeHACK.Engine { public static class FileDialogBoxManager { - public static Boolean IsInOpenDialog = false; - public static Boolean IsInSaveDialog = false; - public static String OnlyViewExtension = ""; - public static void ActivateOpenFileDialog(String ExtensionToView) + public static bool IsInOpenDialog = false; + public static bool IsInSaveDialog = false; + public static string OnlyViewExtension = ""; + public static void ActivateOpenFileDialog(string ExtensionToView) { IsInOpenDialog = true; IsInSaveDialog = false; OnlyViewExtension = ExtensionToView; } - public static void ActivateSaveFileDialog(String ExtensionToView) + public static void ActivateSaveFileDialog(string ExtensionToView) { IsInOpenDialog = false; IsInSaveDialog = true; OnlyViewExtension = ExtensionToView; } - public static String ReadTextFile(String path) + public static string ReadTextFile(string path) { try { |
