Go to the documentation of this file.00001 using System;
00002 using System.Collections.Generic;
00003 using System.Diagnostics;
00004 using Microsoft.VisualBasic.ApplicationServices;
00005 using Microsoft.VisualBasic.CompilerServices;
00006 using Microsoft.VisualBasic.Devices;
00007
00008
00009
00010
00011
00012
00013 namespace SoundsSharpNameSpace.My
00014 {
00015 sealed partial class MyProject
00016 {
00017 [ThreadStatic] static MyApplication application;
00018
00019 public static MyApplication Application {
00020 [DebuggerStepThrough]
00021 get {
00022 if (application == null)
00023 application = new MyApplication();
00024 return application;
00025 }
00026 }
00027
00028 [ThreadStatic] static MyComputer computer;
00029
00030 public static MyComputer Computer {
00031 [DebuggerStepThrough]
00032 get {
00033 if (computer == null)
00034 computer = new MyComputer();
00035 return computer;
00036 }
00037 }
00038
00039 [ThreadStatic] static User user;
00040
00041 public static User User {
00042 [DebuggerStepThrough]
00043 get {
00044 if (user == null)
00045 user = new User();
00046 return user;
00047 }
00048 }
00049
00050 }
00051
00052 partial class MyApplication : ApplicationBase
00053 {
00054 }
00055
00056 partial class MyComputer : Computer
00057 {
00058 }
00059 }