aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/VisualBasicStuff.cs
blob: b05efe5812422a643a0742c1debc4e2b70762185 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
            }
        }
    }
}