Exemplo n.º 1
0
        public static Balking GetInstance()
        {
            if (instance == null)
            {
                instance = new Balking();
            }

            return(instance);
        }
Exemplo n.º 2
0
 static async void ExecutarAssincrono()
 {
     Balking balking = Balking.GetInstance();
     await Task.Run(() => balking.Execute());
 }