Ejemplo n.º 1
0
        internal async static Task <string> ReadStringAsync(string path)
        {
            IStorageInterface si = DependencyService.Get <IStorageInterface>();

            if (si != null)
            {
                return(await si.ReadStringAsync(path));
            }
            return("SORRY, This didn't work at all");
        }