Search This Blog

Wednesday, 1 February 2017

pdf PCL Interface

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace App2
{
   public interface ISaveAndLoad
    {
        Task Save(string filename, string contentType, MemoryStream stream);
    }
}

No comments:

Post a Comment