Skip to content

Instantly share code, notes, and snippets.

@adamtal3
adamtal3 / FileAsync.cs
Created April 8, 2015 20:51
FileAsync - AsyncFile - Asynchronous System.IO.File alternative
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading.Tasks;
/// <summary>
/// An async alternative to System.IO.File common usages
/// </summary>
public static class FileAsync