I tried to write file to xamarin forms and then copy to clipboard but i have no idea how can i copy file to clipboard any help will be appreciated.
string fileName = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "temp.txt");
File.WriteAllText(fileName, "Hello Wolkhjkhjkrld");
String file = "";
using (StreamReader sr = new StreamReader(fileName))
{
file = sr.ReadToEnd();
}
So i want to copy that file to clipboard