protected override async Task <string> InternalLoadAsync(string path)
 {
     return(await UnityFile.ReadAllTextAsync(path, Encoding));
 }
Ejemplo n.º 2
0
        protected override async Task <string> InternalLoadAsync(string path)
        {
            var result = await UnityFile.ReadAllTextAsync(path, Encoding).ConfigureAwait(false);

            return(result);
        }