AppFabTest.Program.DoIt C# (CSharp) Method

DoIt() static private method

static private DoIt ( string args ) : bool
args string
return bool
        static bool DoIt(string[] args)
        {
            // get random number
            var length = a.Next(100, 10000);
            var key = RandomString(35);

            var res = _cache.Get(key, () => RandomString(length, false));

            Console.Write("{0}", _cache.UsingRemote ? "+" : ".");

            return true;
        }