/// /// Object using singleton example. /// public class Tester { /// /// Prints the myValue property from the singleton to the console. /// public static void Test() { System.Console.WriteLine(SingletonExample.singleton.myValue); } }