aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/VisualBasicStuff.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-15 11:35:38 -0400
committerMichael <[email protected]>2017-04-15 11:35:38 -0400
commit761202b4908d28f6aba852a3a59eb1dca50957d1 (patch)
tree895c5f4e0eb97a7b6a26a41cd43c781dabe428c2 /ShiftOS.WinForms/VisualBasicStuff.cs
parent1a3a9b4a4c82bab2417955c81acddb85352d9013 (diff)
downloadshiftos_thereturn-761202b4908d28f6aba852a3a59eb1dca50957d1.tar.gz
shiftos_thereturn-761202b4908d28f6aba852a3a59eb1dca50957d1.tar.bz2
shiftos_thereturn-761202b4908d28f6aba852a3a59eb1dca50957d1.zip
Infobox SHOULD play a sound.
Diffstat (limited to 'ShiftOS.WinForms/VisualBasicStuff.cs')
-rw-r--r--ShiftOS.WinForms/VisualBasicStuff.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/VisualBasicStuff.cs b/ShiftOS.WinForms/VisualBasicStuff.cs
new file mode 100644
index 0000000..b05efe5
--- /dev/null
+++ b/ShiftOS.WinForms/VisualBasicStuff.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Microsoft.VisualBasic.Devices;
+
+namespace ShiftOS.WinForms
+{
+ public static class My
+ {
+ static My()
+ {
+ _computer = new Computer();
+ }
+
+ private static Computer _computer;
+
+ public static Computer Computer
+ {
+ get
+ {
+ return _computer;
+ }
+ }
+ }
+}