aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.Stubs.UI/Examples/WriteToFile.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.Stubs.UI/Examples/WriteToFile.cs')
-rw-r--r--Software/Visual_Studio/Utilities/Tango.Stubs.UI/Examples/WriteToFile.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.Stubs.UI/Examples/WriteToFile.cs b/Software/Visual_Studio/Utilities/Tango.Stubs.UI/Examples/WriteToFile.cs
deleted file mode 100644
index 1d580fd5d..000000000
--- a/Software/Visual_Studio/Utilities/Tango.Stubs.UI/Examples/WriteToFile.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using System;
-using System.Text;
-using System.Linq;
-using System.Drawing;
-using System.Diagnostics;
-using System.Windows.Forms;
-using System.Threading;
-using System.Threading.Tasks;
-using System.Collections.Generic;
-using Tango.PMR.Stubs;
-using Tango.Stubs.UI;
-
-private const string FILE_PATH = "D:\\logFile.txt";
-
-public void OnExecute(StubManager stubManager)
-{
- //This will overwrite existing file.
- stubManager.WriteToFile(FILE_PATH, "Writing to file...");
-
- for (int i = 0; i < 10; i++)
- {
- //This will append the contents to the end of the file.
- stubManager.AppendToFile(FILE_PATH, i.ToString() + " Some text...");
- }
-
- stubManager.AppendToFile(FILE_PATH, "Done");
-
- stubManager.WriteLine("Done writing to the file.");
-} \ No newline at end of file