Mercurial > pub > ImplabNet
view MonoPlay/Program.cs @ 172:92d5278d1b10 ref20160224
Working on text scanner
author | cin |
---|---|
date | Mon, 14 Mar 2016 01:19:38 +0300 |
parents | 97fbbf816844 |
children | 4f82e0f161c3 |
line wrap: on
line source
using System; using Implab; using System.Threading.Tasks; namespace MonoPlay { class MainClass { public static void Main(string[] args) { if (args == null) throw new ArgumentNullException("args"); var t1 = Environment.TickCount; DoWork().GetAwaiter().GetResult(); var t2 = Environment.TickCount; Console.WriteLine("done: {0} ms, {1:.00} Mb, {2} GC", t2 - t1, GC.GetTotalMemory(false) / (1024*1024), GC.CollectionCount(0) ); } static IPromise<int> DoItem(int x) { //return Promise<int>.FromResult(x + 1); var p = new Promise<int>(); p.Resolve(x+1); return p; } static async Task<int> DoWork() { var c = 0; for (int i = 0; i < 10000000; i++) c = await DoItem(c); return c; } } }