This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.WinForms/VisualBasicStuff.cs

28 lines
490 B
C#
Raw Permalink Normal View History

2017-04-15 11:35:38 -04:00
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;
}
}
}
}