From 761202b4908d28f6aba852a3a59eb1dca50957d1 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 15 Apr 2017 11:35:38 -0400 Subject: Infobox SHOULD play a sound. --- ShiftOS.WinForms/VisualBasicStuff.cs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ShiftOS.WinForms/VisualBasicStuff.cs (limited to 'ShiftOS.WinForms/VisualBasicStuff.cs') 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; + } + } + } +} -- cgit v1.2.3